From 92391332d7d185b813c77e10b086ba4c86ae7f0d Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Mon, 7 Mar 2016 17:17:30 -0500 Subject: [PATCH] Reduce the runtime of nudb.recover test --- src/beast/beast/nudb/tests/recover_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/beast/beast/nudb/tests/recover_test.cpp b/src/beast/beast/nudb/tests/recover_test.cpp index ca86973389..45fd12ea11 100644 --- a/src/beast/beast/nudb/tests/recover_test.cpp +++ b/src/beast/beast/nudb/tests/recover_test.cpp @@ -156,7 +156,6 @@ public: test_recover (lf, 0); test_recover (lf, 10); test_recover (lf, 100); - test_recover (lf, 1000); } }; @@ -169,6 +168,7 @@ public: run() override { float lf = 0.90f; + test_recover (lf, 1000); test_recover (lf, 10000); test_recover (lf, 100000); }