Remove `CONFIGURED` from tests as well 😓

This commit is contained in:
vrde 2016-04-06 17:39:44 +02:00
parent 3c31a8684f
commit 959320cdb9
No known key found for this signature in database
GPG Key ID: 6581C7C39B3D397D
1 changed files with 2 additions and 0 deletions

View File

@ -107,6 +107,8 @@ def test_bigchain_show_config(capsys, mock_file_config):
_, _ = capsys.readouterr()
run_show_config(args)
output_config, _ = capsys.readouterr()
config['keypair']['private'] = 'x' * 45
del config['CONFIGURED']
pprint(config)
expected_outout_config, _ = capsys.readouterr()
assert output_config == expected_outout_config