From 7dc1af8a7311be0288c613753c347b8f5aa67824 Mon Sep 17 00:00:00 2001 From: Gil Forsyth Date: Tue, 18 Oct 2016 16:39:39 -0400 Subject: [PATCH] fix bad indent --- tests/test_xoreutils.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_xoreutils.py b/tests/test_xoreutils.py index ca2d5f6b8..9f830b980 100644 --- a/tests/test_xoreutils.py +++ b/tests/test_xoreutils.py @@ -70,11 +70,11 @@ class TestWhich: assert len(matches) == 0 def test_whichgen_ext_success(self): - testdir = self.testdirs[0].name - arg = 'whichtestapp2' - matches = list(_which.whichgen(arg, path=[testdir], exts=['.wta'])) - assert len(matches) == 1 - assert self._file_match(matches[0][0], os.path.join(testdir, arg)) + testdir = self.testdirs[0].name + arg = 'whichtestapp2' + matches = list(_which.whichgen(arg, path=[testdir], exts=['.wta'])) + assert len(matches) == 1 + assert self._file_match(matches[0][0], os.path.join(testdir, arg)) def _file_match(self, path1, path2): if ON_WINDOWS: