We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f414348 commit 765087cCopy full SHA for 765087c
test/thunk.jl
@@ -179,7 +179,7 @@ end
179
ex_str = sprint(io->Base.showerror(io,ex))
180
@test occursin(r"^DTaskFailedException:", ex_str)
181
@test occursin("Test", ex_str)
182
- @test !occursin("Root Thunk", ex_str)
+ @test !occursin("Root Task", ex_str)
183
184
ex = try
185
fetch(b)
@@ -189,7 +189,7 @@ end
189
ex = Dagger.Sch.unwrap_nested_exception(ex)
190
191
192
- @test occursin("Root Thunk", ex_str)
+ @test occursin("Root Task", ex_str)
193
end
194
@testset "single dependent" begin
195
a = @spawn error("Test")
0 commit comments