-do not use expired records, they'll be removed internally now
[oweals/gnunet.git] / src / namestore / test_namestore_api_store_update.c
index edc11067d14895d42cb835c34015db7fdb1d2aa1..b68d59a6b3f18376c9e3b2395fdfa47a7cbb2ece 100644 (file)
@@ -147,7 +147,7 @@ rd_decrypt_cb (void *cls,
                 "Block was decrypted successfully, updating record \n");
 
     rd_new.flags = GNUNET_GNSRECORD_RF_NONE;
-    rd_new.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
+    rd_new.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
     rd_new.record_type = TEST_RECORD_TYPE2;
     rd_new.data_size = TEST_RECORD_DATALEN2;
     rd_new.data = GNUNET_malloc (TEST_RECORD_DATALEN2);
@@ -245,7 +245,7 @@ run (void *cls,
   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
 
   rd.flags = GNUNET_GNSRECORD_RF_NONE;
-  rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
+  rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
   rd.record_type = TEST_RECORD_TYPE;
   rd.data_size = TEST_RECORD_DATALEN;
   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);