summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-12-22 12:51:02 +0100
committerSebastian Thiel <byronimo@gmail.com>2016-12-22 12:51:02 +0100
commitddffe26850e8175eb605f975be597afc3fca8a03 (patch)
tree95a33a464cb234bb47e525b10e0e7e1e01a8d5d7
parent3d6e1731b6324eba5abc029b26586f966db9fa4f (diff)
downloadgitpython-ddffe26850e8175eb605f975be597afc3fca8a03.tar.gz
fix(remote): test
Should have paid more attention to the test-failure before pushing the fix.
-rw-r--r--git/test/test_remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py
index aae4fb9f..4e06fbaf 100644
--- a/git/test/test_remote.py
+++ b/git/test/test_remote.py
@@ -613,7 +613,7 @@ class TestRemote(TestBase):
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