diff options
author | Artur Signell <artur.signell@itmill.com> | 2009-09-29 10:41:22 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2009-09-29 10:41:22 +0000 |
commit | af3831f95eabe624c6e64909e3e36c402515befe (patch) | |
tree | f210628473524f111c2b8f5cf698fdd732a7e54d /src | |
parent | a4538554c9f715ef64b6eda3925c1b8925828285 (diff) | |
download | vaadin-framework-af3831f95eabe624c6e64909e3e36c402515befe.tar.gz vaadin-framework-af3831f95eabe624c6e64909e3e36c402515befe.zip |
Fixed test case to always show same date/time
svn changeset:8979/svn branch:6.1
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java b/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java index b057099b6e..ae31d25190 100644 --- a/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java +++ b/src/com/vaadin/tests/components/datefield/DateFieldReadOnly.java @@ -33,7 +33,7 @@ public class DateFieldReadOnly extends TestBase { // Set date so that testing always has same time
Calendar c = Calendar.getInstance(Locale.ENGLISH);
- c.set(2009, 05, 12);
+ c.set(2009, 05, 12, 0, 0, 0);
timeField.setValue(c.getTime());
timeField.setReadOnly(true);
|