X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Ftest%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fnotify%2FListNotificationTest.java;h=5e40f8140d0424b2ee0681222361a49d28741250;hp=c354afabb95ef4b00755195c964588f2b95611bf;hb=b4d2d68b5ea4f4edc7337f380cfe078756678126;hpb=c4ae226ec5052116cefc542ae2017036a7bc6332 diff --git a/src/test/java/net/pterodactylus/sone/notify/ListNotificationTest.java b/src/test/java/net/pterodactylus/sone/notify/ListNotificationTest.java index c354afa..5e40f81 100644 --- a/src/test/java/net/pterodactylus/sone/notify/ListNotificationTest.java +++ b/src/test/java/net/pterodactylus/sone/notify/ListNotificationTest.java @@ -4,11 +4,11 @@ import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.emptyIterable; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.not; -import static org.mockito.Matchers.argThat; -import static org.mockito.Matchers.eq; +import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; +import static org.mockito.hamcrest.MockitoHamcrest.argThat; import java.util.Arrays; @@ -21,8 +21,6 @@ import org.junit.Test; /** * Unit test for {@link ListNotification}. - * - * @author David ‘Bombe’ Roden */ public class ListNotificationTest { @@ -36,7 +34,7 @@ public class ListNotificationTest { public ListNotificationTest() { when(template.getInitialContext()).thenReturn(templateInitialContext); - listNotification = new ListNotification(ID, KEY, template); + listNotification = new ListNotification<>(ID, KEY, template); } @Test @@ -110,6 +108,7 @@ public class ListNotificationTest { ListNotification secondNotification = new ListNotification(listNotification); listNotification.add("a"); secondNotification.add("a"); + listNotification.setLastUpdateTime(secondNotification.getLastUpdatedTime()); assertThat(listNotification.hashCode(), is(secondNotification.hashCode())); }