Skip to content

Commit 5f27c6c

Browse files
bug fix in the utils test
1 parent a56adb5 commit 5f27c6c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/utils.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
end
118118

119119
@testset "odd_view, fourier_reverse!" begin
120+
a = [1 2 3;4 5 6;7 8 9;10 11 12]
120121
@test odd_view(a) == [4 5 6;7 8 9; 10 11 12]
121122
fourier_reverse!(a)
122123
@test a == [3 2 1;12 11 10;9 8 7;6 5 4]

0 commit comments

Comments
 (0)