File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/kotlin/com/coder/gateway/settings Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ import com.coder.gateway.services.CoderSettingsState
44import com.coder.gateway.util.OS
55import com.coder.gateway.util.getOS
66import com.coder.gateway.util.withPath
7- import org.junit.Assert.assertNotEquals
87import java.net.URL
98import java.nio.file.Path
109import kotlin.test.Test
1110import kotlin.test.assertContains
1211import kotlin.test.assertEquals
12+ import kotlin.test.assertNotEquals
1313
1414internal class CoderSettingsTest {
1515 @Test
@@ -99,7 +99,7 @@ internal class CoderSettingsTest {
9999 assertEquals(Path .of(expected).toAbsolutePath(), settings.binPath(url, true ).parent)
100100 assertEquals(Path .of(expected).toAbsolutePath(), settings2.binPath(url, true ).parent)
101101
102- assertNotEquals(" foo-bar.baz" , settings.binPath(url).fileName)
102+ assertNotEquals(" foo-bar.baz" , settings.binPath(url).fileName.toString() )
103103 assertEquals(" foo-bar.baz" , settings2.binPath(url).fileName.toString())
104104 }
105105
You can’t perform that action at this time.
0 commit comments