Skip to content

Commit c08579d

Browse files
authored
Update runtests.jl
1 parent 6bd3f93 commit c08579d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ function test_model_interface(K)
3030
# test diagonal fwhm
3131
m = K((10, 9))
3232
@test m == K((10, 9)) == K(SA[10, 9])
33-
@test size(m) == (31, 29)
33+
@test size(m) == (29, 31)
3434
@test axes(m) == (-14:14, -15:15)
3535
@test m.pos SA[0, 0]
3636
@test eltype(m) == Float64
3737

3838
# test different maxsize
3939
m = K((10, 9); maxsize=2)
40-
@test size(m) == (21, 19)
40+
@test size(m) == (19, 21)
4141
@test axes(m) == (-9:9, -10:10)
4242
@test m.pos SA[0, 0]
4343
@test eltype(m) == Float64

0 commit comments

Comments
 (0)