diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-07-07 21:01:12 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-07-07 21:01:12 +0200 |
commit | b56764b2dbe8845d476e41c8659fc0543ffb3433 (patch) | |
tree | 07ac4cfb26492bfb9c35497a39cbcad36ecc5680 /git/test/objects/test_submodule.py | |
parent | 8b3b222565199eab67196a5ab840b9e2770bfc53 (diff) | |
download | gitpython-b56764b2dbe8845d476e41c8659fc0543ffb3433.tar.gz |
Fixed submodule related issues once again - is it ever going to end ?
Diffstat (limited to 'git/test/objects/test_submodule.py')
-rw-r--r-- | git/test/objects/test_submodule.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/git/test/objects/test_submodule.py b/git/test/objects/test_submodule.py index e5adedbc..2b7c7f40 100644 --- a/git/test/objects/test_submodule.py +++ b/git/test/objects/test_submodule.py @@ -284,7 +284,9 @@ class TestSubmodule(TestObjectBase): # make sure sub-submodule is not modified by forcing it to update # to the revision it is supposed to point to. - csm.update() + for subitem in sm.traverse(): + subitem.update() + #END checkout to right commit # this would work assert sm.remove(dry_run=True) is sm |