From f17f67baaf18cb6274350357e0afc53f3b33f979 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Fri, 4 May 2012 09:40:25 +0200 Subject: [PATCH] Fix test for issue 10 --- test/test_autopep8.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_autopep8.py b/test/test_autopep8.py index 72a7cbc..f418bcf 100644 --- a/test/test_autopep8.py +++ b/test/test_autopep8.py @@ -158,8 +158,8 @@ while True: def test_e224_and_e225(self): line = """ class Foo(): - def __init__(self): - x= 3 + def __init__(self): + x= 3 """.lstrip() fixed = """ class Foo(): -- 1.7.8.5