Skip to content

Commit

Permalink
fix: Added @ignore to the tests (#689)
Browse files Browse the repository at this point in the history
[no important files changed]
  • Loading branch information
DerSimeon authored Oct 20, 2024
1 parent a614669 commit c331e1c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import org.junit.Ignore
import org.junit.Test
import kotlin.test.Ignore
import kotlin.test.Test
import kotlin.test.assertEquals

class ZebraPuzzleTest {

@Test
fun `resident who drinks water`() = assertEquals("Norwegian", ZebraPuzzle().drinksWater())

@Ignore
@Test
fun `resident who owns zebra`() = assertEquals("Japanese", ZebraPuzzle().ownsZebra())

Expand Down

0 comments on commit c331e1c

Please sign in to comment.