Browse Source

Tests: test_pEpSQLite.cc - clean

LIB-12
heck 4 years ago
parent
commit
ace39bb69d
  1. 2
      test/test_pEpSQLite.cc
  2. 1
      test/test_pEpSQLite.hh

2
test/test_pEpSQLite.cc

@ -404,7 +404,7 @@ namespace pEp {
to_string(i) + "');"); to_string(i) + "');");
// cout << "RESULT: " << endl << pEpSQLite::to_string(rs) << endl; // cout << "RESULT: " << endl << pEpSQLite::to_string(rs) << endl;
if (i % 2) { if (i % 2) {
if (rs.size() != 0) { if (!rs.empty()) {
runtime_error e{ "Exception verifying database content" }; runtime_error e{ "Exception verifying database content" };
throw(e); throw(e);
} }

1
test/test_pEpSQLite.hh

@ -51,7 +51,6 @@ namespace pEp {
pEpSQLite fixture_db_open_after_close(); pEpSQLite fixture_db_open_after_close();
// tables // tables
pEpSQLite fixture_db_open_with_tables_of_new(); pEpSQLite fixture_db_open_with_tables_of_new();
pEpSQLite fixture_db_open_with_tables_of_corrupt();
// content // content
pEpSQLite fixture_db_open_with_tables_and_content(); pEpSQLite fixture_db_open_with_tables_and_content();
// delete // delete

Loading…
Cancel
Save