summaryrefslogtreecommitdiff
path: root/tests/database.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/database.cpp')
-rw-r--r--tests/database.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/database.cpp b/tests/database.cpp
index 20a446b..7ab6da8 100644
--- a/tests/database.cpp
+++ b/tests/database.cpp
@@ -16,13 +16,10 @@ TEST_CASE("Database")
std::string postgresql_uri{"postgresql://"};
const char* env_value = ::getenv("TEST_POSTGRES_URI");
if (env_value != nullptr)
- postgresql_uri += env_value;
+ Database::open("postgresql://"s + env_value);
else
- postgresql_uri += "/test";
- Database::open(postgresql_uri);
-#else
- Database::open(":memory:");
#endif
+ Database::open(":memory:");
Database::raw_exec("DELETE FROM " + Database::irc_server_options.get_name());
Database::raw_exec("DELETE FROM " + Database::irc_channel_options.get_name());
@@ -121,5 +118,5 @@ TEST_CASE("Database")
}
Database::close();
-#endif
}
+#endif