Skip to content

Commit 9a64721

Browse files
committed
Fix test failure on 32-bit
1 parent dd825a4 commit 9a64721

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ results1 = SQLite.tables(db)
2424
results = SQLite.query(db,"SELECT * FROM Employee;")
2525
@test length(results.data) == 15
2626
@test size(results) == (8,15)
27-
@test typeof(results[1,1]) == Nullable{Int64}
27+
@test typeof(results[1,1]) == Nullable{Int}
2828
@test typeof(results[1,2]) == Nullable{UTF8String}
2929
@test isnull(results[1,5])
3030

0 commit comments

Comments
 (0)