Skip to content

Commit 6ccd9b6

Browse files
authored
Update runtests.jl
1 parent e9ee406 commit 6ccd9b6

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
@@ -799,14 +799,14 @@ end
799799
@test_throws SQLiteException SQLite.load!(tbl3, db, "data")
800800
end
801801

802-
@testset "PR #XXX: strict (and only strict) tables should error if types don't match" begin
802+
@testset "PR #343: strict (and only strict) tables should error if types don't match" begin
803803
db = SQLite.DB()
804804

805805
tbl1 = (a = [1, 2, 3], b = [4, 5, 6])
806806
SQLite.load!(tbl1, db, "data_default")
807807
SQLite.load!(tbl1, db, "data_strict", strict=true)
808808

809-
tbl2 = (a = ["a", "b", "c"], b=[7, 8, 9]
809+
tbl2 = (a = ["a", "b", "c"], b=[7, 8, 9])
810810
SQLite.load!(tbl2, db, "data_default")
811811
@test_throws SQLiteException SQLite.load!(tbl2, db, "data_strict")
812812
end

0 commit comments

Comments
 (0)