Skip to content

Commit

Permalink
Update GcIosTestMatrixTest.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
adamfilipow92 committed Oct 26, 2020
1 parent 93c555e commit 9c75613
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test_runner/src/test/kotlin/ftl/gc/GcIosTestMatrixTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ import io.mockk.every
import io.mockk.mockk
import io.mockk.unmockkAll
import org.junit.After
import org.junit.Assert.assertEquals
import org.junit.Test
import org.junit.runner.RunWith
import java.io.StringReader

@RunWith(FlankTestRunner::class)
class GcIosTestMatrixTest {
Expand Down Expand Up @@ -130,7 +132,7 @@ class GcIosTestMatrixTest {
""".trimIndent()))

val expected = listOf("test/test/test")
Assert.assertEquals(expected, iosArgs.directoriesToPull)
assertEquals(expected, iosArgs.directoriesToPull)
}

@Test
Expand All @@ -143,6 +145,6 @@ class GcIosTestMatrixTest {
""".trimIndent()))

val expected = emptyList<String>()
Assert.assertEquals(expected, iosArgs.directoriesToPull)
assertEquals(expected, iosArgs.directoriesToPull)
}
}

0 comments on commit 9c75613

Please sign in to comment.