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 a62e4bb commit c73eacbCopy full SHA for c73eacb
test/Core.jl
@@ -508,10 +508,7 @@ end
508
@test pyeq(Bool, pydict(Dict("foo" => 1, "bar" => 2)), x)
509
@test pyeq(Bool, pydict((foo = 1, bar = 2)), x)
510
@test pyeq(Bool, pydict(x), x)
511
- y = pydict("foo" => 1, "bar" => 2)
512
- @test pyeq(Bool, pygetitem(y, "foo"), 1)
513
- @test pyeq(Bool, pygetitem(y, "bar"), 2)
514
- @test pyeq(Bool, x, y)
+ @test pyeq(Bool, pydict("foo" => 1, "bar" => 2), x)
515
end
516
517
@testitem "bool" begin
0 commit comments