From 0e4632ee3181aaa3c57a2316fe9552a1410956d0 Mon Sep 17 00:00:00 2001 From: martinsumner Date: Thu, 27 Oct 2016 22:23:19 +0100 Subject: [PATCH] Test correction In one test run the numbe rof files fluctuated but ended at zero. The ending at zero is the importnat thing. --- test/end_to_end/basic_SUITE.erl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/end_to_end/basic_SUITE.erl b/test/end_to_end/basic_SUITE.erl index 5514f10..d8193ec 100644 --- a/test/end_to_end/basic_SUITE.erl +++ b/test/end_to_end/basic_SUITE.erl @@ -493,7 +493,7 @@ space_clear_ondelete(_Config) -> io:format("Bookie has ~w ledger files " ++ "after second close~n", [length(FNsD_L)]), true = PointB_Journals < length(FNsA_J), - true = length(FNsB_L) =< length(FNsA_L), - true = length(FNsC_L) =< length(FNsB_L), - true = length(FNsD_L) =< length(FNsB_L), + true = length(FNsD_L) < length(FNsA_L), + true = length(FNsD_L) < length(FNsB_L), + true = length(FNsD_L) < length(FNsC_L), true = length(FNsD_L) == 0. \ No newline at end of file