From 512db56e7c536e533a510452d8214afef65135aa Mon Sep 17 00:00:00 2001 From: tpazderka Date: Thu, 11 Sep 2014 12:13:13 +0200 Subject: [PATCH] Fixed test_12_s_utils String created as a single string without EOL --- tests/test_12_s_utils.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/test_12_s_utils.py b/tests/test_12_s_utils.py index 3baf5f9..730ffa7 100644 --- a/tests/test_12_s_utils.py +++ b/tests/test_12_s_utils.py @@ -15,16 +15,16 @@ from py.test import raises from pathutils import full_path -SUCCESS_STATUS = """ -""" +SUCCESS_STATUS = ('\n' +'') -ERROR_STATUS = """ -Error resolving -principal""" +ERROR_STATUS = ('\n' +'Error resolving ' +'principal') def _eq(l1, l2):