Skip to content

Commit

Permalink
Fix tests (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipelautert authored Nov 15, 2023
1 parent 0acc0b3 commit e11c1b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void runGeneratedChangeLog() throws Exception {

String differences = toString(diffResult);

assertEquals(differences, 1, diffResult.getMissingObjects().size());
assertEquals(differences, 0, diffResult.getMissingObjects().size());
assertEquals(differences, 0, diffResult.getUnexpectedObjects().size());
// assertEquals(differences, 0, diffResult.getChangedObjects().size()); //unimportant differences in schema name and datatypes causing test to fail

Expand Down

0 comments on commit e11c1b4

Please sign in to comment.