Skip to content

Commit

Permalink
Merge pull request #40 from bcahlit/fixsqlitebug
Browse files Browse the repository at this point in the history
fix sqlite3 bug
  • Loading branch information
qicosmos authored Feb 21, 2020
2 parents 9230fb5 + ec9f060 commit 84c8d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ TEST_CASE(orm_insert_query){
auto result3 = sqlite.query<student>();
TEST_CHECK(result3.size()==1);
TEST_CHECK(sqlite.insert(v)==2);
auto result6 = mysql.query<student>();
auto result6 = sqlite.query<student>();
TEST_CHECK(result6.size()==4);
#endif
}
Expand Down

0 comments on commit 84c8d0d

Please sign in to comment.