Skip to content

Commit

Permalink
Fixed typo: commemt -> comment
Browse files Browse the repository at this point in the history
  • Loading branch information
delirious-lettuce authored and warner committed Jul 28, 2017
1 parent 5e3269d commit 7de0179
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/git/test_invocations.py
Expand Up @@ -119,7 +119,7 @@ def make_demolib_sdist(self):
self.git("init", workdir=libdir)
self.python("versioneer.py", "setup", workdir=libdir)
self.git("add", "--all", workdir=libdir)
self.git("commit", "-m", "commemt", workdir=libdir)
self.git("commit", "-m", "comment", workdir=libdir)
self.git("tag", "demolib-1.0", workdir=libdir)
self.python("setup.py", "sdist", "--format=tar", workdir=libdir)
created = os.path.join(libdir, "dist", "demolib-1.0.tar")
Expand Down Expand Up @@ -154,7 +154,7 @@ def make_distutils_repo(self):
self.git("init", workdir=repodir)
self.python("versioneer.py", "setup", workdir=repodir)
self.git("add", "--all", workdir=repodir)
self.git("commit", "-m", "commemt", workdir=repodir)
self.git("commit", "-m", "comment", workdir=repodir)
self.git("tag", "demoapp2-2.0", workdir=repodir)
return repodir

Expand All @@ -169,7 +169,7 @@ def make_distutils_repo_subproject(self):
self.git("init", workdir=repodir)
self.python("versioneer.py", "setup", workdir=projectdir)
self.git("add", "--all", workdir=repodir)
self.git("commit", "-m", "commemt", workdir=repodir)
self.git("commit", "-m", "comment", workdir=repodir)
self.git("tag", "demoapp2-2.0", workdir=repodir)
return projectdir

Expand Down Expand Up @@ -253,7 +253,7 @@ def make_setuptools_repo(self):
self.git("init", workdir=repodir)
self.python("versioneer.py", "setup", workdir=repodir)
self.git("add", "--all", workdir=repodir)
self.git("commit", "-m", "commemt", workdir=repodir)
self.git("commit", "-m", "comment", workdir=repodir)
self.git("tag", "demoapp2-2.0", workdir=repodir)
return repodir

Expand All @@ -268,7 +268,7 @@ def make_setuptools_repo_subproject(self):
self.git("init", workdir=repodir)
self.python("versioneer.py", "setup", workdir=projectdir)
self.git("add", "--all", workdir=repodir)
self.git("commit", "-m", "commemt", workdir=repodir)
self.git("commit", "-m", "comment", workdir=repodir)
self.git("tag", "demoapp2-2.0", workdir=repodir)
return projectdir

Expand Down

0 comments on commit 7de0179

Please sign in to comment.