From ddffe26850e8175eb605f975be597afc3fca8a03 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 22 Dec 2016 12:51:02 +0100 Subject: fix(remote): test Should have paid more attention to the test-failure before pushing the fix. --- git/test/test_remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1