Skip to content

Commit

Permalink
Fix errors in ant build
Browse files Browse the repository at this point in the history
  • Loading branch information
brazzy committed Dec 24, 2010
1 parent e4b47a2 commit 4130eba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion test/de/brazzy/nikki/test/GuiImageTest.groovy
Expand Up @@ -123,7 +123,7 @@ class GuiImageTest extends GuiTest {
assertEquals("testDescription", editor.textArea.text)
assertEquals(IMAGE1, editor.filename.text)
assertEquals(FORMAT_TIME.print(image1.time), editor.time.text)
assertEquals(time_diff as String, editor.timeDiff.text)
assertEquals(String.valueOf(time_diff.intValue()), editor.timeDiff.text)
assertEquals(image1.waypoint.latitude.toString(), editor.latitude.text)
assertEquals(image1.waypoint.longitude.toString(), editor.longitude.text)
assertTrue(editor.export.selected)
Expand Down
2 changes: 0 additions & 2 deletions test/de/brazzy/nikki/test/ImageTest.groovy
Expand Up @@ -27,8 +27,6 @@ import org.joda.time.LocalDate;
import org.joda.time.LocalTime;
import org.joda.time.Minutes;

import com.sun.xml.internal.ws.api.streaming.XMLStreamReaderFactory.Default;

import de.brazzy.nikki.Texts;
import de.brazzy.nikki.model.Day;
import de.brazzy.nikki.model.Image;
Expand Down

0 comments on commit 4130eba

Please sign in to comment.