diff options
author | Artur Signell <artur@vaadin.com> | 2013-03-12 00:52:23 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-03-12 08:26:56 +0000 |
commit | d0b5b614e9e4dfb53dfcdcc53096b2f26ed12327 (patch) | |
tree | 2139e6767a0eebf5940f6e4bfc0f9addff824150 /uitest/src | |
parent | 45f97119c7a99a31c1223a814c23ea2c3a08459b (diff) | |
download | vaadin-framework-d0b5b614e9e4dfb53dfcdcc53096b2f26ed12327.tar.gz vaadin-framework-d0b5b614e9e4dfb53dfcdcc53096b2f26ed12327.zip |
Fixed locale to ensure the same results in all browsers
Change-Id: I0a4f9f69f5b5339def23e940ef9cb42163c42638
Diffstat (limited to 'uitest/src')
-rw-r--r-- | uitest/src/com/vaadin/tests/fieldgroup/DateForm.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/fieldgroup/DateForm.java b/uitest/src/com/vaadin/tests/fieldgroup/DateForm.java index 0d906a086b..3064856db9 100644 --- a/uitest/src/com/vaadin/tests/fieldgroup/DateForm.java +++ b/uitest/src/com/vaadin/tests/fieldgroup/DateForm.java @@ -1,6 +1,7 @@ package com.vaadin.tests.fieldgroup; import java.util.Date; +import java.util.Locale; import com.vaadin.data.fieldgroup.BeanFieldGroup; import com.vaadin.data.fieldgroup.FieldGroup; @@ -77,6 +78,7 @@ public class DateForm extends TestBase { @Override protected void setup() { + getMainWindow().setLocale(Locale.US); addComponent(log); final FieldGroup fieldGroup = new BeanFieldGroup<DateObject>( DateObject.class); |