Skip to content

Commit

Permalink
chore:make sure to close database in the tests in all the cases
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Jan 26, 2024
1 parent d1de1b6 commit 50ac7ae
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ public void clear(Graph graph, Configuration configuration) throws Exception {

if (g.isOpen()) {
g.drop();
} else {
g.close();
}
}
}
Expand Down

0 comments on commit 50ac7ae

Please sign in to comment.