From cd0878ff9e1d6a1b5483baf90612737409993bc3 Mon Sep 17 00:00:00 2001 From: KtorZ Date: Mon, 24 Aug 2020 14:07:00 +0200 Subject: [PATCH] remove redundant and now overly long gap max test in command-line scenarios --- .../src/Test/Integration/Scenario/CLI/Shelley/Wallets.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/core-integration/src/Test/Integration/Scenario/CLI/Shelley/Wallets.hs b/lib/core-integration/src/Test/Integration/Scenario/CLI/Shelley/Wallets.hs index 3800983829d..62ed331d3a8 100644 --- a/lib/core-integration/src/Test/Integration/Scenario/CLI/Shelley/Wallets.hs +++ b/lib/core-integration/src/Test/Integration/Scenario/CLI/Shelley/Wallets.hs @@ -402,9 +402,7 @@ spec = do ++ show addrPoolMax ++ "." let matrix = - [ ( "Gap max", show addrPoolMax, expectsOk ) - , ( "Gap min", show addrPoolMin, expectsOk ) - , ( "Gap max - 1", show (addrPoolMax - 1), expectsOk ) + [ ( "Gap min", show addrPoolMin, expectsOk ) , ( "Gap min + 1", show (addrPoolMin + 1), expectsOk ) , ( "Gap max + 1 -> fail", show (addrPoolMax + 1), expectsErr ) , ( "Gap min - 1 -> fail", show (addrPoolMin - 1), expectsErr )