commit 102c599a82ff78bc5a31f9aa6e6447884da53ffa
parent e82277a7b72250adfc11d8de6eacc90a4575992e
Author: cfillion <cfillion@users.noreply.github.com>
Date: Mon, 30 Jul 2018 08:31:14 -0400
use a better filename to test sqlite db opening failure
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/database.cpp b/test/database.cpp
@@ -12,7 +12,7 @@ static const char *M = "[database]";
TEST_CASE("open bad sqlite file path", M) {
try {
- Database db("/a\\");
+ Database db("/");
FAIL();
}
catch(const reapack_error &e) {