From dbdb3d8e117fda6c91e3118c2bafe9e19ed5d0e6 Mon Sep 17 00:00:00 2001 From: Christopher Doris Date: Mon, 20 Jan 2025 14:33:14 +0000 Subject: [PATCH] fix jlwrap test --- test/JlWrap.jl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/JlWrap.jl b/test/JlWrap.jl index f2df384b..b974fc5c 100644 --- a/test/JlWrap.jl +++ b/test/JlWrap.jl @@ -210,9 +210,8 @@ pyjl(Foo(1))._jl_display(mime = "text/plain") end @testset "help" begin - # TODO: Fix these - @test_skip pyjl(Foo(1))._jl_help() - @test_skip pyjl(Foo(1))._jl_help(mime = "text/plain") + @test pyis(pyjl(Foo(1))._jl_help(), nothing) + @test pyis(pyjl(Foo(1))._jl_help(mime = "text/plain"), nothing) end end