diff options
author | Brian Lopez <seniorlopez@gmail.com> | 2011-06-11 22:05:26 -0700 |
---|---|---|
committer | Brian Lopez <seniorlopez@gmail.com> | 2011-06-11 22:06:02 -0700 |
commit | a51201cc738eda4d8938672eaa636ac088316df4 (patch) | |
tree | f7ebc7971696842dc2e6479f4c45ec54ad41073b /tests/t11-sqlite.c | |
parent | 63ad439405e33081417bc87f523dab4a2d7b99af (diff) | |
download | libgit2-a51201cc738eda4d8938672eaa636ac088316df4.tar.gz |
use proper in-memory database for sqlite3 tests
Diffstat (limited to 'tests/t11-sqlite.c')
-rw-r--r-- | tests/t11-sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t11-sqlite.c b/tests/t11-sqlite.c index 61ecf98ac..e9e08ac71 100644 --- a/tests/t11-sqlite.c +++ b/tests/t11-sqlite.c @@ -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) |