summaryrefslogtreecommitdiff
path: root/qpid/java/common/src/test
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2007-02-20 16:20:41 +0000
committerRobert Godfrey <rgodfrey@apache.org>2007-02-20 16:20:41 +0000
commit7b7e0445a11bb3962b417a8c939565c9866fbd79 (patch)
treeaf0711b9b146abca2613452f5f2c8b2df3062d9e /qpid/java/common/src/test
parentf1bf17e6e58ea09aa21d5e7ed6a7cc5e4a54702e (diff)
downloadqpid-python-7b7e0445a11bb3962b417a8c939565c9866fbd79.tar.gz
QPID-325 : Persist durable exchange information in the store
QPID-318 : Remove hardcoding of version numbers (as applies to store) git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@509628 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common/src/test')
-rw-r--r--qpid/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java b/qpid/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java
index ffbdf730a9..0f706ac553 100644
--- a/qpid/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java
+++ b/qpid/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java
@@ -154,7 +154,7 @@ public class BasicContentHeaderPropertiesTest extends TestCase
public void testSetGetTimestamp()
{
- long timestamp = 999999999;
+ long timestamp = System.currentTimeMillis();
_testProperties.setTimestamp(timestamp);
assertEquals(timestamp, _testProperties.getTimestamp());
}