Skip to content

Commit

Permalink
0005198: fix unit test for changes made to exported tables
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jan 25, 2022
1 parent 1d82cef commit b453a84
Showing 1 changed file with 4 additions and 3 deletions.
Expand Up @@ -67,10 +67,11 @@ public void testExtractConfigurationStandalone() throws Exception {
StringWriter writer = new StringWriter();
dataExtractorService.extractConfigurationStandalone(TestConstants.TEST_CLIENT_NODE, writer);
String content = writer.getBuffer().toString();
System.out.println(content);
assertNumberOfLinesThatStartWith(25, "table,", content, false, true);
assertNumberOfLinesThatStartWith(26, "columns,", content);
assertNumberOfLinesThatStartWith(26, "keys,", content);
assertNumberOfLinesThatStartWith(26, "sql,", content);
assertNumberOfLinesThatStartWith(25, "columns,", content);
assertNumberOfLinesThatStartWith(25, "keys,", content);
assertNumberOfLinesThatStartWith(25, "sql,", content);
assertNumberOfLinesThatStartWith(0, "update,", content);
assertNumberOfLinesThatStartWith(65, "insert,", content, false, true);
assertNumberOfLinesThatStartWith(1, "commit,-9999", content);
Expand Down

0 comments on commit b453a84

Please sign in to comment.