We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def "should return exact commit for query with commitId"() { given: def ref1 = new SnapshotEntity(id: 2) def ref2 = new SnapshotEntity(id: 3) javers.commit("a", ref1) javers.commit("a", ref2) def entity = new SnapshotEntity(id: 1, listOfEntities: [ref1,ref2]) javers.commit("a", entity) when: def shadows = javers.findShadows( byInstanceId(1, SnapshotEntity) .withScopeDeepPlus(1) .withCommitId(CommitId.valueOf("543434.0")) //non-existing commitId .build()) .collect{it.get()} then: shadows.size() == 0 }
This test fails since javers version 3.7.5
The text was updated successfully, but these errors were encountered:
javers#660 failing test
2d11091
Failing test: https://github.com/olekihnatowicz/javers/tree/javers%23660-reproduction
Sorry, something went wrong.
thanks for reporting
fix for #660
8328a7b
Merge pull request #662 from javers/findShadows_by_commitId_bug
52b4aa3
Fix released in 3.9.2
No branches or pull requests
This test fails since javers version 3.7.5
The text was updated successfully, but these errors were encountered: