Remove print statement from tests

Signed-off-by: Joseph Nuthalpati <njoseph@thoughtworks.com>
This commit is contained in:
Joseph Nuthalpati 2017-08-28 16:01:24 +05:30
parent fecc5c7b94
commit 0a6e45f1cc
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35

View File

@ -122,6 +122,5 @@ class TestYAMLFileUtil(TestCase):
with open(fp.name, 'r') as retrieved_conf:
file_conf = ruamel.yaml.round_trip_load(retrieved_conf)
print(file_conf)
assert file_conf == {'property1': self.kv_pair,
'property2': self.kv_pair}