We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 575747c commit c4f16d3Copy full SHA for c4f16d3
test/util.jl
@@ -14,9 +14,9 @@ end
14
15
function test_task_failed_exception(test_result::Test.Pass, cfg::ConfigForTestingTaskFailedException)
16
observed_outer_ex = extract_test_result_value(test_result)
17
- @test observed_outer_ex isa expected_outer_ex_T
+ @test observed_outer_ex isa cfg.expected_outer_ex_T
18
observed_inner_ex = recursively_unwrap_ex(observed_outer_ex)
19
- @test observed_inner_ex isa typeof(expected_inner_ex_INSTANCE)
20
- @test observed_inner_ex == expected_inner_ex_INSTANCE
+ @test observed_inner_ex isa typeof(cfg.expected_inner_ex_INSTANCE)
+ @test observed_inner_ex == cfg.expected_inner_ex_INSTANCE
21
return nothing
22
end
0 commit comments