Commit a51201cc by Brian Lopez

use proper in-memory database for sqlite3 tests

parent 63ad4394
......@@ -53,7 +53,7 @@ static git_odb *open_sqlite_odb(void)
if (git_odb_new(&odb) < GIT_SUCCESS)
return NULL;
if (git_odb_backend_sqlite(&sqlite, ":memory") < GIT_SUCCESS)
if (git_odb_backend_sqlite(&sqlite, ":memory:") < GIT_SUCCESS)
return NULL;
if (git_odb_add_backend(odb, sqlite, 0) < GIT_SUCCESS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment