diff options
| author | Robert Godfrey <rgodfrey@apache.org> | 2007-02-20 16:20:41 +0000 |
|---|---|---|
| committer | Robert Godfrey <rgodfrey@apache.org> | 2007-02-20 16:20:41 +0000 |
| commit | c46d62e6834205408502d89d99f73e47f3ca2eb8 (patch) | |
| tree | a0cbe2baaaae2d6eab79e0a4491c7299a9bfedc8 /java/common/src/test | |
| parent | bc6a142a055071e5b7025cd1022485f26a0011f2 (diff) | |
| download | qpid-python-c46d62e6834205408502d89d99f73e47f3ca2eb8.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/qpid@509628 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/src/test')
| -rw-r--r-- | java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java b/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java index ffbdf730a9..0f706ac553 100644 --- a/java/common/src/test/java/org/apache/qpid/framing/BasicContentHeaderPropertiesTest.java +++ b/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()); } |
