Skip to content

Commit 99b06ba

Browse files
authored
Merge pull request #205 from techtonik/patch-3
Patch test_e2e.py for easier command override
2 parents 21f4be6 + 2bf2ccc commit 99b06ba

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

gitless/tests/test_e2e.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414

1515
import sys
1616
if sys.platform != 'win32':
17-
from sh import ErrorReturnCode, gl, git
17+
from sh import ErrorReturnCode, Command
1818
else:
1919
from pbs import ErrorReturnCode, Command
20-
gl = Command('gl')
21-
git = Command('git')
20+
21+
gl = Command('gl')
22+
git = Command('git')
2223

2324

2425
from gitless.tests import utils

0 commit comments

Comments
 (0)