# HG changeset patch # User Jaroslav Tulach # Date 1252323095 -7200 # Node ID 5d36990642b7e2658d5ac9d541ad1298e19ff653 # Parent 517faddf1320f967a97d76dfcccaa1078af00631 Switching to English diff -r 517faddf1320 -r 5d36990642b7 freemarkerdor/src/test/java/cz/xelfi/quoridor/freemarkerdor/UITest.java --- a/freemarkerdor/src/test/java/cz/xelfi/quoridor/freemarkerdor/UITest.java Sat Sep 05 15:52:31 2009 +0200 +++ b/freemarkerdor/src/test/java/cz/xelfi/quoridor/freemarkerdor/UITest.java Mon Sep 07 13:31:35 2009 +0200 @@ -32,10 +32,12 @@ import java.io.File; import java.io.IOException; import java.net.URI; +import java.util.Locale; import java.util.concurrent.Callable; import javax.ws.rs.core.Cookie; import org.junit.After; import org.junit.Before; +import org.junit.BeforeClass; import org.junit.Test; import static org.junit.Assert.*; @@ -51,6 +53,11 @@ public UITest() throws Exception { } + @BeforeClass + public static void localeEnglish() { + Locale.setDefault(Locale.ENGLISH); + } + @Before public void setUp() throws Exception { dir = File.createTempFile("quoridor", ".dir");