Skip to content

Commit c4f16d3

Browse files
authored
Update util.jl
1 parent 575747c commit c4f16d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/util.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ end
1414

1515
function test_task_failed_exception(test_result::Test.Pass, cfg::ConfigForTestingTaskFailedException)
1616
observed_outer_ex = extract_test_result_value(test_result)
17-
@test observed_outer_ex isa expected_outer_ex_T
17+
@test observed_outer_ex isa cfg.expected_outer_ex_T
1818
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
19+
@test observed_inner_ex isa typeof(cfg.expected_inner_ex_INSTANCE)
20+
@test observed_inner_ex == cfg.expected_inner_ex_INSTANCE
2121
return nothing
2222
end

0 commit comments

Comments
 (0)