Remove unnecessary type parameters
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / utils / PaginationTest.kt
index 3ce20ce..d3f063d 100644 (file)
@@ -12,7 +12,7 @@ import org.junit.Test
 class PaginationTest {
 
        private val items = listOf(1, 2, 3, 4, 5)
-       private val pagination = Pagination<Int>(items, 2)
+       private val pagination = Pagination(items, 2)
 
        @Test
        fun `pagination can be created from iterable`() {