Skip to content

Commit 633876f

Browse files
Fix unexpected pass for Broyden Wood function test on Julia 1.12+
Test #4 (Wood function) for SimpleBroyden() now passes on Julia 1.12+ on macOS. Updated the broken_tests logic to exclude test #4 from broken tests on v1.12+. The test was previously marked as broken on v1.11+ but is now passing on v1.12+, likely due to improvements in Julia 1.12 that fixed the underlying issue. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ccb1784 commit 633876f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/23_test_problems_tests.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,10 @@ end
148148
if Sys.isapple()
149149
broken_tests[alg_ops[1]]=[1, 5, 11]
150150
broken_tests[alg_ops[3]]=[1, 5, 6, 9, 11]
151-
if VERSIONv"1.11-"
151+
if VERSIONv"1.12"
152+
# Test #4 (Wood function) passes on v1.12+
153+
broken_tests[alg_ops[5]]=[1, 5, 11]
154+
elseif VERSIONv"1.11-"
152155
broken_tests[alg_ops[5]]=[1, 4, 5, 11]
153156
else
154157
broken_tests[alg_ops[5]]=[1, 5, 11]

0 commit comments

Comments
 (0)