From 83620ced2e847c0de721b0e78092bcd0677c9c4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 18 Jan 2014 10:40:20 +0100 Subject: [PATCH] trim trailing spaces --- testing/acceptance_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/acceptance_test.py b/testing/acceptance_test.py index b90178217..015e9e929 100644 --- a/testing/acceptance_test.py +++ b/testing/acceptance_test.py @@ -307,7 +307,7 @@ class TestGeneralUsage: '*ERROR*', ]) assert result.ret == 4 # usage error only if item not found - + def test_namespace_import_doesnt_confuse_import_hook(self, testdir): # Ref #383. Python 3.3's namespace package messed with our import hooks # Importing a module that didn't exist, even if the ImportError was @@ -319,7 +319,7 @@ class TestGeneralUsage: except ImportError: # We handle the import error gracefully here pass - + def test_whatever(): pass """)