diff --git a/test/runtests.jl b/test/runtests.jl index f512acb..71c52f9 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -3,7 +3,7 @@ include("../src/sqlite.jl") @testset "_dbconnect function for SQLite" begin - conn= _dbconnect(SQLite.DB, "/data/sqlite.db") + conn= _dbconnect(SQLite.DB, "../test/data/sqlite.db") @test @isdefined conn output = DBInterface.execute(conn, "SELECT age FROM PERSON WHERE name = 'John Doe'") |> DataFrame out = output[1,1]