Commit c76f1e38 authored by Manuel Wudka-Robles's avatar Manuel Wudka-Robles
Browse files

Integration tests clear DB before each run

parent 17e7eb5a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ class IntegrationTest : public ::testing::Test {
            pid_ = fork();
            ASSERT_NE(-1, pid_);
            if (pid_ == 0) {
                execl(kinetic_path, kinetic_path, NULL);
                execl(kinetic_path, kinetic_path, "--clear_database", NULL);
            }
        }
        ConnectionOptions options;