Skip to content

Commit ce7f9c9

Browse files
author
Christopher Doris
committed
rename ispynull to pyisnull
1 parent d1e80d6 commit ce7f9c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/abstract.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,13 @@ end
214214
@test_throws PyException pyiter(pybuiltins.True)
215215
it = pyiter(pyrange(2))
216216
x = PythonCall.unsafe_pynext(it)
217-
@test !PythonCall.ispynull(x)
217+
@test !PythonCall.pyisnull(x)
218218
@test pyeq(Bool, x, 0)
219219
x = PythonCall.unsafe_pynext(it)
220-
@test !PythonCall.ispynull(x)
220+
@test !PythonCall.pyisnull(x)
221221
@test pyeq(Bool, x, 1)
222222
x = PythonCall.unsafe_pynext(it)
223-
@test PythonCall.ispynull(x)
223+
@test PythonCall.pyisnull(x)
224224
end
225225

226226
@testset "number" begin

0 commit comments

Comments
 (0)