aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-06-20 07:39:00 +0000
committerChristian Grothoff <christian@grothoff.org>2011-06-20 07:39:00 +0000
commitc184da1fc1d71370fadd20761627c019c432b223 (patch)
tree8df9c582537fad16e0036967e7e304766fd2575a /src/datastore
parent96ee07aa3980c1bde3b02d88cb1e0cbcb9633421 (diff)
downloadgnunet-c184da1fc1d71370fadd20761627c019c432b223.tar.gz
gnunet-c184da1fc1d71370fadd20761627c019c432b223.zip
allow tests to pass on old sqlite installations
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/test_plugin_datastore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/datastore/test_plugin_datastore.c b/src/datastore/test_plugin_datastore.c
index eb6cac7dd..6ac2d7a6e 100644
--- a/src/datastore/test_plugin_datastore.c
+++ b/src/datastore/test_plugin_datastore.c
@@ -269,7 +269,7 @@ test (void *cls,
269 { 269 {
270 put_value (crc->api, j, crc->i); 270 put_value (crc->api, j, crc->i);
271 cs = crc->api->estimate_size (crc->api->cls); 271 cs = crc->api->estimate_size (crc->api->cls);
272 GNUNET_assert (os < cs); 272 GNUNET_assert (os <= cs);
273 os = cs; 273 os = cs;
274 } 274 }
275 crc->phase++; 275 crc->phase++;