diff --git a/symmetric-core/src/test/java/org/jumpmind/symmetric/service/impl/AbstractDataExtractorServiceTest.java b/symmetric-core/src/test/java/org/jumpmind/symmetric/service/impl/AbstractDataExtractorServiceTest.java index a1655f25ec..e8cad4e476 100644 --- a/symmetric-core/src/test/java/org/jumpmind/symmetric/service/impl/AbstractDataExtractorServiceTest.java +++ b/symmetric-core/src/test/java/org/jumpmind/symmetric/service/impl/AbstractDataExtractorServiceTest.java @@ -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);