changeset 208:992969237359 boundary_conditions

Remove tests that don't work through the package manager
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 25 Jun 2019 11:09:48 +0200
parents f85a0b38f3ff
children 7db145ce6e4d
files LazyTensors/test/runtests.jl
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/LazyTensors/test/runtests.jl	Mon Jun 24 15:54:47 2019 +0200
+++ b/LazyTensors/test/runtests.jl	Tue Jun 25 11:09:48 2019 +0200
@@ -85,9 +85,6 @@
     v2 = [1., 2, 3, 4]
     # Test that size of arrays is asserted when not specified inbounds
     @test_throws DimensionMismatch v1 +̃ v2
-    # Test that no error checking is performed when specified inbounds
-    res = (v1,v2) -> (@inbounds (v1 +̃ v2)[1] == 2)
-    @test res(v1,v2)
 
     # Test operations on LazyArray
     v1 = DummyArray([1, 2.3, 4])
@@ -104,7 +101,4 @@
     v2 = [1., 2, 3, 4]
     # Test that size of arrays is asserted when not specified inbounds
     @test_throws DimensionMismatch v1 + v2
-    # Test that no error checking is performed when specified inbounds
-    res = (v1,v2) -> (@inbounds (v1 + v2)[1] == 2)
-    @test res(v1,v2)
 end