Skip to content

Commit

Permalink
chore(cucumber):[#357] ignore contractAgreementId on expected file co…
Browse files Browse the repository at this point in the history
…mparison
  • Loading branch information
ds-jhartmann committed Apr 10, 2024
1 parent c47d641 commit d2f8834
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ public void iCheckIfAreAsExpected(String valueType, String fileName) throws IOEx
final List<Submodel> actualSubmodels = completedJob.getSubmodels();
final List<Submodel> expectedSubmodels = getExpectedSubmodels(fileName);
assertThat(actualSubmodels).hasSameSizeAs(expectedSubmodels)
.usingRecursiveFieldByFieldElementComparatorIgnoringFields("identification")
.usingRecursiveFieldByFieldElementComparatorIgnoringFields("identification", "contractAgreementId")
.containsAll(expectedSubmodels);
}
}
Expand Down

0 comments on commit d2f8834

Please sign in to comment.