We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c07189 commit b119af4Copy full SHA for b119af4
test/chuffed.jl
@@ -14,7 +14,9 @@ normalize(x) = replace(x, "\r\n" => "\n")
14
15
@testset "one_solution.fzn" begin
16
out_string = Chuffed.run_chuffed(@__DIR__() * "/assets/one_solution.fzn")
17
- @test normalize(out_string) == "x = 10;\n\n----------\n==========\n"
+ expected = "x = 10;\n\n----------\n==========\n"
18
+ unk = "% [<UNKNOWN>]\n"
19
+ @test normalize(out_string) == expected || normalize(out_string) == expected * unk
20
end
21
22
@testset "several_solutions.fzn" begin
0 commit comments