Skip to content

Commit 3c6fc3a

Browse files
authored
Update runtests.jl
1 parent 1fc23b7 commit 3c6fc3a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,9 @@ my_stable_add_undecorated(y) = my_add(y)
133133
@test_throws AssertionError @check(bar(2), nowarn=Any[bar], maxdepth=100)
134134
@test_throws AssertionError @check(bar(2), nowarn=:all)
135135
@test_throws AssertionError @check(bar(2), nowarn=:all, maxdepth=100)
136-
@test_nowarn @check(bar(2), nowarn=:allexcept, except=[bar]) == 1.0
137-
@test_nowarn @check(bar(2), nowarn=:allexcept, except=[bar], maxdepth=100) == 1.0
138-
@test_nowarn @check(bar(2), nowarn=:allexcept, except=Any[bar]) == 1.0
139-
@test_nowarn @check(bar(2), nowarn=:allexcept, except=Any[bar], maxdepth=100) == 1.0
136+
@test_nowarn @check(bar(2), except=[bar]) == 1.0
137+
@test_nowarn @check(bar(2), except=[bar], maxdepth=100) == 1.0
138+
@test_nowarn @check(bar(2), except=Any[bar]) == 1.0
139+
@test_nowarn @check(bar(2), except=Any[bar], maxdepth=100) == 1.0
140140
end
141141
end

0 commit comments

Comments
 (0)