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 bdd77d5 commit b560a14Copy full SHA for b560a14
test/util.jl
@@ -18,8 +18,10 @@ end
18
function test_task_failed_exception(test_result::Test.Pass, cfg::ConfigForTestingTaskFailedException)
19
observed_outer_ex = extract_test_result_value(test_result)
20
@test observed_outer_ex isa cfg.expected_outer_ex_T
21
+
22
observed_inner_ex = recursively_unwrap_ex(observed_outer_ex)
23
@test observed_inner_ex isa typeof(cfg.expected_inner_ex_INSTANCE)
24
@test observed_inner_ex == cfg.expected_inner_ex_INSTANCE
25
26
return nothing
27
end
0 commit comments