summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDWesl <22566757+DWesl@users.noreply.github.com>2022-06-20 21:02:18 -0400
committerGitHub <noreply@github.com>2022-06-20 21:02:18 -0400
commit2996f402f11565c3ad93aedfe070f4f5f571e72e (patch)
tree445b5a3fd6d320da70d59d98fc096b587a91006d
parentc3fd6c1a7c93d28597b45ca424efa1a6fdd8b2c8 (diff)
downloadgitpython-2996f402f11565c3ad93aedfe070f4f5f571e72e.tar.gz
FIX: Mark the correct test_submodule test as xfail on Cygwin
Got the wrong one the first time.
-rw-r--r--test/test_submodule.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_submodule.py b/test/test_submodule.py
index 98cc5543..d72fe5d3 100644
--- a/test/test_submodule.py
+++ b/test/test_submodule.py
@@ -436,15 +436,15 @@ class TestSubmodule(TestBase):
def test_base_rw(self, rwrepo):
self._do_base_tests(rwrepo)
+ @with_rw_repo(k_subm_current, bare=True)
+ def test_base_bare(self, rwrepo):
+ self._do_base_tests(rwrepo)
+
@pytest.mark.xfail(
sys.platform == "cygwin",
reason="Cygwin GitPython can't find submodule SHA",
raises=ValueError
)
- @with_rw_repo(k_subm_current, bare=True)
- def test_base_bare(self, rwrepo):
- self._do_base_tests(rwrepo)
-
@skipIf(
HIDE_WINDOWS_KNOWN_ERRORS,
"""