Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

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 9a05f48 commit 800ba80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/de/svs/doido/mongo/dto/ConfigmapTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void testGetterSetterUriFail() {
Configmap c = new Configmap();
String uri = "proto://foo.bar.com/";
c.setUri(uri);
assertEquals("",c.getUri());
assertEquals("", c.getUri());
}

@Test
Expand All @@ -40,7 +40,7 @@ void testToString() {
c.setUri(uri);
d.setName(name);
d.setUri(uri);
assertEquals("",c.toString());
assertEquals(d.toString(), c.toString());
}

}

0 comments on commit 800ba80

Please sign in to comment.