From 0a6e45f1cc53aa4a50f96b7243193a21aff23f46 Mon Sep 17 00:00:00 2001 From: Joseph Nuthalpati Date: Mon, 28 Aug 2017 16:01:24 +0530 Subject: [PATCH] Remove print statement from tests Signed-off-by: Joseph Nuthalpati --- plinth/tests/test_utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plinth/tests/test_utils.py b/plinth/tests/test_utils.py index cf980935b..0a86d4378 100644 --- a/plinth/tests/test_utils.py +++ b/plinth/tests/test_utils.py @@ -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}