Skip to content

Commit b7b02dc

Browse files
WIP
1 parent 9a93de6 commit b7b02dc

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

modules/cdc-ext/src/test/java/org/apache/ignite/cdc/CacheConflictOperationsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class CacheConflictOperationsTest extends CacheConflictOperationsAbstract
3232
/** Tests that regular cache operations works with the conflict resolver when there is no update conflicts. */
3333
@Test
3434
public void testSimpleUpdates() {
35-
String key = "UpdatesWithoutConflict";
35+
String key = nextKey();
3636

3737
for (int i = 0; i < 3; i++) {
3838
putLocal(key);

modules/cdc-ext/src/test/java/org/apache/ignite/cdc/CacheConflictOperationsWithCustomResolverTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ public void testSimpleConflicts() throws IgniteCheckedException {
6363
/** {@inheritDoc} */
6464
@Test
6565
@Override public void testMetrics() throws Exception {
66-
// LWW strategy resolves conflicts in unexpected way at versioned resolve test.
67-
GridTestUtils.assertThrows(log, super::testMetrics, AssertionError.class, "");
66+
// TODO current implementation does not support metrics for custom resolvers.
6867
}
6968

7069
/**

0 commit comments

Comments
 (0)