From 40b4536bc82b4710323253ecf11da7796308e71b Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Thu, 11 Apr 2019 12:41:50 +0100 Subject: [PATCH] Fix tests --- tests/server/test_env.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/server/test_env.py b/tests/server/test_env.py index 2c79294..4c3398f 100644 --- a/tests/server/test_env.py +++ b/tests/server/test_env.py @@ -197,15 +197,11 @@ def test_RPC_PORT(): def test_COST_HARD_LIMIT(): - assert_integer('COST_HARD_LIMIT', 'cost_hard_limit', 20000) + assert_integer('COST_HARD_LIMIT', 'cost_hard_limit', 10000) def test_COST_SOFT_LIMIT(): - assert_integer('COST_SOFT_LIMIT', 'cost_soft_limit', 2000) - - -def test_COST_SOFT_LIMIT(): - assert_integer('COST_SOFT_LIMIT', 'cost_soft_limit', 2000) + assert_integer('COST_SOFT_LIMIT', 'cost_soft_limit', 500) def test_BANDWIDTH_UNIT_COST():