Skip to content

Commit 3f15c07

Browse files
committed
Fix incorrect usage of .isnull field of Nullable for 0.6 compat
1 parent f9b3695 commit 3f15c07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ Data.stream!(dt, sink)
234234
Data.close!(sink)
235235
dt2 = SQLite.query(db, "Select * from temp")
236236
#There might be a better way to check this
237-
@test dt.columns[1][1].value==dt2.columns[1][1].value
238-
@test dt.columns[1][2].isnull==dt2.columns[1][2].isnull
237+
@test get(dt.columns[1][1]) == get(dt2.columns[1][1])
238+
@test isnull(dt.columns[1][2]) == isnull(dt2.columns[1][2])
239239

240240
#Test removeduplicates!
241241
db = SQLite.DB() #In case the order of tests is changed

0 commit comments

Comments
 (0)