Mercurial > repos > public > sbplib_julia
diff test/LazyTensors/lazy_array_test.jl @ 1023:52f07c77299d refactor/sbpoperators/inflation
Merge refactor/lazy_tensors
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 21 Mar 2022 09:51:07 +0100 |
parents | 7ef605b8f132 |
children | 6104db60b7a3 |
line wrap: on
line diff
--- a/test/LazyTensors/lazy_array_test.jl Fri Mar 18 16:57:00 2022 +0100 +++ b/test/LazyTensors/lazy_array_test.jl Mon Mar 21 09:51:07 2022 +0100 @@ -59,8 +59,6 @@ end @test_throws BoundsError (v1 +̃ v2)[4] v2 = [1., 2, 3, 4] - # Test that size of arrays is asserted when not specified inbounds - # TODO: Replace these errors with SizeMismatch @test_throws DimensionMismatch v1 +̃ v2 # Test operations on LazyArray @@ -76,8 +74,6 @@ end @test_throws BoundsError (v1 + v2)[4] v2 = [1., 2, 3, 4] - # Test that size of arrays is asserted when not specified inbounds - # TODO: Replace these errors with SizeMismatch @test_throws DimensionMismatch v1 + v2 end