--annotate and --message aren't valid options in older versions of git.

This commit is contained in:
justinta89 2015-08-19 09:09:34 -06:00
parent ee85c901ea
commit c542895bd2

View File

@ -87,7 +87,7 @@ class GitModuleTest(integration.ModuleCase):
)
# Add a tag
subprocess.check_call(
['git', 'tag', '--annotate', self.tags[0], '--message', 'Add tag']
['git', 'tag', '-a', self.tags[0], '-m', 'Add tag']
)
# Checkout a second branch
subprocess.check_call(