Skip to content

Commit c4fff3c

Browse files
committed
Don't use hasproperty since it's 1.2+ only
1 parent 20a5525 commit c4fff3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -852,10 +852,10 @@ end
852852
@test LibPQ.column_number(result, :Column) == 1
853853

854854
table = Tables.columntable(result)
855-
@test hasproperty(table, :Column)
855+
@test :Column in propertynames(table)
856856

857857
table = Tables.rowtable(result)
858-
@test hasproperty(table[1], :Column)
858+
@test :Column in propertynames(table[1])
859859

860860
close(result)
861861
close(conn)

0 commit comments

Comments
 (0)