Skip to content

Commit 9e720ad

Browse files
author
Andy Ferris
committed
Fix typo in test
1 parent 77f10e4 commit 9e720ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/abstractarray.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
@test @inferred(vec(SMatrix{2, 2}([1 2; 3 4])))::SVector{4,Int} == [1, 3, 2, 4]
7070
end
7171

72-
@testset "copy" begin
72+
@testset "copy" begin
7373
@test @inferred(copy(SMatrix{2, 2}([1 2; 3 4]))) === @SMatrix [1 2; 3 4]
74-
@test @inferred(copy(MMatrix{2, 2}([1 2; 3 4])))::MMatrix === [1 2; 3 4]
74+
@test @inferred(copy(MMatrix{2, 2}([1 2; 3 4])))::MMatrix == [1 2; 3 4]
7575
end
7676

7777
@testset "full" begin

0 commit comments

Comments
 (0)