Skip to content

Commit 040f22a

Browse files
committed
Update emoteset test
1 parent 3e8590e commit 040f22a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/test/java/org/kitteh/irc/client/library/feature/twitch/messagetag/EmoteSetsTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package org.kitteh.irc.client.library.feature.twitch.messagetag;
22

3+
import org.junit.jupiter.api.Assertions;
4+
import org.junit.jupiter.api.Test;
35
import org.kitteh.irc.client.library.Client;
46
import org.mockito.Mockito;
5-
import org.junit.Assert;
6-
import org.junit.Test;
77
import java.util.Arrays;
88
import java.util.Collections;
99
import java.util.List;
@@ -20,7 +20,7 @@ public void verifyInteger(){
2020
EmoteSets tested = EmoteSets.FUNCTION.apply(client, NAME, "123,456,789");
2121

2222
List<String> expected = Arrays.asList("123", "456", "789");
23-
Assert.assertEquals(expected, tested.getEmoteSets());
23+
Assertions.assertEquals(expected, tested.getEmoteSets());
2424
}
2525

2626
/**
@@ -32,7 +32,7 @@ public void verifyUUID(){
3232
EmoteSets tested = EmoteSets.FUNCTION.apply(client, NAME, "fb70df85-0e31-41ea-a13f-c3201bac7013,1a313266-b8e1-49c2-9409-68526a85a350");
3333

3434
List<String> expected = Arrays.asList("fb70df85-0e31-41ea-a13f-c3201bac7013", "1a313266-b8e1-49c2-9409-68526a85a350");
35-
Assert.assertEquals(expected, tested.getEmoteSets());
35+
Assertions.assertEquals(expected, tested.getEmoteSets());
3636
}
3737

3838
/**
@@ -42,7 +42,7 @@ public void verifyUUID(){
4242
public void verifyNull(){
4343
Client client = Mockito.mock(Client.class);
4444
EmoteSets tested = EmoteSets.FUNCTION.apply(client, NAME, null);
45-
46-
Assert.assertEquals(Collections.emptyList(), tested.getEmoteSets());
45+
46+
Assertions.assertEquals(Collections.emptyList(), tested.getEmoteSets());
4747
}
4848
}

0 commit comments

Comments
 (0)