Skip to content

git expects boolean value to be lower case #578

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 16 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(remote): test
Should have paid more attention to the test-failure before
pushing the fix.
  • Loading branch information
Byron authored and barry-scott committed Feb 2, 2017
commit 3f0318b0afe86aed6cc06c822da71e945dd26e59
2 changes: 1 addition & 1 deletion git/test/test_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def test_multiple_urls(self, rw_repo):
remote.set_url(test2, delete=True)
self.assertEqual(list(remote.urls), [test1, test3])
# Testing changing an URL
remote.set_url(test3, test2)
remote.set_url(test2, test3)
self.assertEqual(list(remote.urls), [test1, test2])

# will raise: fatal: --add --delete doesn't make sense
Expand Down