summaryrefslogtreecommitdiff
path: root/lib/tdb/test/run-3G-file.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tdb/test/run-3G-file.c')
-rw-r--r--lib/tdb/test/run-3G-file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tdb/test/run-3G-file.c b/lib/tdb/test/run-3G-file.c
index ba85d1473e0..5ea4fcfbde2 100644
--- a/lib/tdb/test/run-3G-file.c
+++ b/lib/tdb/test/run-3G-file.c
@@ -81,8 +81,8 @@ int main(int argc, char *argv[])
ok1(tdb);
tdb->methods = &large_io_methods;
- /* Enlarge the file (internally multiplies by 100). */
- ok1(tdb_expand(tdb, 30000000) == 0);
+ /* Enlarge the file (internally multiplies by 2). */
+ ok1(tdb_expand(tdb, 1500000000) == 0);
/* Put an entry in, and check it. */
key.dsize = strlen("hi");