mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
fix bad indent
This commit is contained in:
parent
1a5766db19
commit
7dc1af8a73
1 changed files with 5 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue