Compare commits

...

5 Commits

Author SHA1 Message Date
YannC.
e298dec0cc fix: a change 2025-11-19 09:47:00 +01:00
YannC.
75f12cce87 change 2025-11-19 09:47:00 +01:00
YannC.
68729f7966 change 2025-11-19 09:47:00 +01:00
YannC.
3e06e90acb new commit 2025-11-19 09:47:00 +01:00
YannC.
b9f822c7ee to not be merge 2025-11-19 09:47:00 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
class AppTest {
@Test
void testHelp() {
void testHelp2() {
ByteArrayOutputStream out = new ByteArrayOutputStream();
System.setOut(new PrintStream(out));

View File

@@ -14,7 +14,7 @@ class NoopCacheTest {
private Cache<String, String> cache = new NoopCache<>();
@Test
void getIfPresent() {
void getIfPresentChangeToBeremove() {
cache.put("key", "value");
assertThat(cache.getIfPresent("key")).isNull();