aboutsummaryrefslogtreecommitdiff
path: root/src/test/DBTest.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 21:51:30 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-20 21:51:30 +0100
commit8e72968e294cbc4ac6e9ff09bd94cde1775d735b (patch)
tree1790d90772a1cd37feff180a5dacfae33c305a68 /src/test/DBTest.cpp
parent3a5a61399cea453c5fc25e3b999ef9a751fd4448 (diff)
nitpick #34
Diffstat (limited to 'src/test/DBTest.cpp')
-rw-r--r--src/test/DBTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/DBTest.cpp b/src/test/DBTest.cpp
index b57eba9..e80814c 100644
--- a/src/test/DBTest.cpp
+++ b/src/test/DBTest.cpp
@@ -1,5 +1,5 @@
-#include <gtest/gtest.h>
#include <crepe/facade/DB.h>
+#include <gtest/gtest.h>
using namespace std;
using namespace crepe;
@@ -26,4 +26,3 @@ TEST_F(DBTest, Has) {
db.set("foo", "bar");
EXPECT_EQ(db.has("foo"), true);
}
-