Skip to content

Commit

Permalink
fix for julia 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
bbejanov committed Jul 5, 2024
1 parent ead3b6b commit ee57ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_workspace.jl
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ end

@testset "merge" begin
a = Workspace(a=6, b=7, q=8)
ka = copy(keys(a))
ka = Set(keys(a))
@test (empty!(a); isempty(a))
a = Workspace(a=6, b=7, q=8)
@test (merge!(a, Workspace(z=12)); keys(a) == union(ka, (:z,)) && a.z == 12)
Expand Down

0 comments on commit ee57ff5

Please sign in to comment.