Making the test pass
authorJaroslav Tulach <jtulach@netbeans.org>
Sun, 25 Apr 2010 22:55:23 +0200
changeset 241b6a67364aff7
parent 240 29287b0a1a0b
child 242 ba048fb6c925
Making the test pass
emailer/src/test/scala/cz/xelfi/quoridor/emailer/MainTest.scala
     1.1 --- a/emailer/src/test/scala/cz/xelfi/quoridor/emailer/MainTest.scala	Sun Apr 25 22:46:08 2010 +0200
     1.2 +++ b/emailer/src/test/scala/cz/xelfi/quoridor/emailer/MainTest.scala	Sun Apr 25 22:55:23 2010 +0200
     1.3 @@ -33,14 +33,14 @@
     1.4  class MainTest {
     1.5      @Test
     1.6      def testCheckLazyPlayers() = {
     1.7 -      val arr = new Array[String](4)
     1.8 +      val arr = new Array[String](0)
     1.9        /*
    1.10        arr(0) = "http://quoridor.xelfi.cz/api/"
    1.11        arr(1) = ""
    1.12        arr(2) = ""
    1.13        arr(3) = "print"
    1.14 +      */
    1.15        Main.main(arr)
    1.16 -      */
    1.17      }
    1.18  }
    1.19