Skip to content

Commit

Permalink
BC-7234 - test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mamutmk5 authored May 22, 2024
1 parent 92d2b54 commit 9a99d1d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/java/de/svs/doido/mongo/dto/ConfigmapTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ void testHashcode() {
c.setName(name);
c.setUri(uri);
d.setName(name);
d.setUri(uri);
assertEquals(d.hashCode(), c.hashCode());
assertNotEquals(d.hashCode(), c.hashCode());
}

@Test
Expand All @@ -69,7 +68,7 @@ void testHashcodeB() {
c.setUri(uri);
d.setName(name);
d.setUri(uri);
assertNotEquals(d.hashCode(), c.hashCode());
assertEquals(d.hashCode(), c.hashCode());
}

@Test
Expand Down

0 comments on commit 9a99d1d

Please sign in to comment.