aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/test_datastore_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-05-26 08:11:58 +0000
committerChristian Grothoff <christian@grothoff.org>2010-05-26 08:11:58 +0000
commit793dcea8b8c6b1e6a0eb2e2a16f9f99919794e25 (patch)
tree7074013f8785d25a721a1df49695d5dc4d5921e6 /src/datastore/test_datastore_api.c
parent1bba5fc1454311db704590b56537db33dfc8e5d7 (diff)
downloadgnunet-793dcea8b8c6b1e6a0eb2e2a16f9f99919794e25.tar.gz
gnunet-793dcea8b8c6b1e6a0eb2e2a16f9f99919794e25.zip
fixing testcase: make sure content is not expired already
Diffstat (limited to 'src/datastore/test_datastore_api.c')
-rw-r--r--src/datastore/test_datastore_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastore/test_datastore_api.c b/src/datastore/test_datastore_api.c
index b4f4f07da..ef805c28a 100644
--- a/src/datastore/test_datastore_api.c
+++ b/src/datastore/test_datastore_api.c
@@ -89,7 +89,7 @@ get_expiration (int i)
89{ 89{
90 struct GNUNET_TIME_Absolute av; 90 struct GNUNET_TIME_Absolute av;
91 91
92 av.value = now.value + 200000 - i * 1000; 92 av.value = now.value + 20000000 - i * 1000;
93 return av; 93 return av;
94} 94}
95 95