Skip to content

Commit 73ca826

Browse files
authored
adapt tests to recent change in EllipsisNotation.jl (#43)
1 parent d4fb751 commit 73ca826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/nonstandard_indices.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ using Test
1616

1717
@test_broken typeof(u_hybrid[1, ..]) == typeof(u_hybrid[1, :])
1818
@test_broken typeof(u_hybrid[.., 1]) == typeof(u_hybrid[:, 1])
19-
@test typeof(u_hybrid[..]) == typeof(u_hybrid[:, :])
19+
@test_broken typeof(u_hybrid[..]) == typeof(u_hybrid[:])
2020

2121
@inferred u_hybrid[1, ..]
2222
@inferred u_hybrid[.., 1]

0 commit comments

Comments
 (0)