diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-03-18 22:05:54 +0200 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2018-03-18 22:26:31 +0200 |
commit | f773b4cedad84da3ab3f548a6293dca7a0ec2707 (patch) | |
tree | b634b8b0dbe5cefe16c2f516898a6d52fc21949d /git/test | |
parent | 16223e5828ccc8812bd0464d41710c28379c57a9 (diff) | |
download | gitpython-f773b4cedad84da3ab3f548a6293dca7a0ec2707.tar.gz |
github -> GitHub
Diffstat (limited to 'git/test')
-rw-r--r-- | git/test/test_docs.py | 2 | ||||
-rw-r--r-- | git/test/test_submodule.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_docs.py b/git/test/test_docs.py index 1ba3f482..67ffb934 100644 --- a/git/test/test_docs.py +++ b/git/test/test_docs.py @@ -173,7 +173,7 @@ class Tutorials(TestBase): # [14-test_init_repo_object] # create a new submodule and check it out on the spot, setup to track master branch of `bare_repo` - # As our GitPython repository has submodules already that point to github, make sure we don't + # As our GitPython repository has submodules already that point to GitHub, make sure we don't # interact with them for sm in cloned_repo.submodules: assert not sm.remove().exists() # after removal, the sm doesn't exist anymore diff --git a/git/test/test_submodule.py b/git/test/test_submodule.py index 3b15c095..0bf76380 100644 --- a/git/test/test_submodule.py +++ b/git/test/test_submodule.py @@ -264,7 +264,7 @@ class TestSubmodule(TestBase): self.failUnlessRaises(ValueError, csm.remove, module=False, configuration=False) # module() is supposed to point to gitdb, which has a child-submodule whose URL is still pointing - # to github. To save time, we will change it to + # to GitHub. To save time, we will change it to csm.set_parent_commit(csm.repo.head.commit) with csm.config_writer() as cw: cw.set_value('url', self._small_repo_url()) |