Index: trunk/test/unit/org/openstreetmap/josm/data/osm/ChangesetTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/osm/ChangesetTest.java	(revision 13812)
+++ trunk/test/unit/org/openstreetmap/josm/data/osm/ChangesetTest.java	(revision 13813)
@@ -150,4 +150,5 @@
     @Test
     public void testHasEqualSemanticAttributes() {
+        Date today = new Date();
         Changeset cs1 = new Changeset();
         Changeset cs2 = new Changeset();
@@ -156,21 +157,21 @@
         // Closed At
         cs1.setClosedAt(null);
-        cs2.setClosedAt(new Date());
+        cs2.setClosedAt(today);
         assertFalse(cs1.hasEqualSemanticAttributes(cs2));
         cs1.setClosedAt(yesterday());
-        cs2.setClosedAt(new Date());
-        assertFalse(cs1.hasEqualSemanticAttributes(cs2));
-        cs1.setClosedAt(new Date());
-        cs2.setClosedAt(new Date());
+        cs2.setClosedAt(today);
+        assertFalse(cs1.hasEqualSemanticAttributes(cs2));
+        cs1.setClosedAt(today);
+        cs2.setClosedAt(today);
         assertTrue(cs1.hasEqualSemanticAttributes(cs2));
         // Created At
         cs1.setCreatedAt(null);
-        cs2.setCreatedAt(new Date());
+        cs2.setCreatedAt(today);
         assertFalse(cs1.hasEqualSemanticAttributes(cs2));
         cs1.setCreatedAt(yesterday());
-        cs2.setCreatedAt(new Date());
-        assertFalse(cs1.hasEqualSemanticAttributes(cs2));
-        cs1.setCreatedAt(new Date());
-        cs2.setCreatedAt(new Date());
+        cs2.setCreatedAt(today);
+        assertFalse(cs1.hasEqualSemanticAttributes(cs2));
+        cs1.setCreatedAt(today);
+        cs2.setCreatedAt(today);
         assertTrue(cs1.hasEqualSemanticAttributes(cs2));
         // Id
