We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40bce99 commit 91230eeCopy full SHA for 91230ee
1 file changed
src/test/java/com/getaxonflow/sdk/PolicyTest.java
@@ -286,9 +286,9 @@ void testPatternShouldTestPatternAgainstInputs() {
286
);
287
288
assertThat(result.isValid()).isTrue();
289
- assertThat(result.getResults()).hasSize(2);
290
- assertThat(result.getResults().get(0).isMatched()).isTrue();
291
- assertThat(result.getResults().get(1).isMatched()).isFalse();
+ assertThat(result.getMatches()).hasSize(2);
+ assertThat(result.getMatches().get(0).isMatched()).isTrue();
+ assertThat(result.getMatches().get(1).isMatched()).isFalse();
292
}
293
294
@Test
0 commit comments