chiark / gitweb /
update URL for git repo of test app
authorHans-Christoph Steiner <hans@eds.org>
Mon, 9 Jan 2017 14:12:27 +0000 (15:12 +0100)
committerHans-Christoph Steiner <hans@eds.org>
Fri, 20 Jan 2017 11:12:20 +0000 (12:12 +0100)
tests/import.TestCase

index 3cfdb92e55d3a9b1698da1ae776f788f54e3a7fc..cd71c56f63ab725c98d81ef3cfc78e53aa50a392 100755 (executable)
@@ -31,7 +31,7 @@ class ImportTest(unittest.TestCase):
         fdroidserver.common.fill_config_defaults(config)
         fdroidserver.common.config = config
 
-        url = 'https://gitlab.com/eighthave/ci-test-app'
+        url = 'https://gitlab.com/fdroid/ci-test-app'
         r = requests.head(url)
         if r.status_code != 200:
             print("ERROR", url, 'unreachable (', r.status_code, ')')
@@ -42,8 +42,8 @@ class ImportTest(unittest.TestCase):
         app.UpdateCheckMode = "Tags"
         root_dir, src_dir = import_proxy.get_metadata_from_url(app, url)
         self.assertEqual(app.RepoType, 'git')
-        self.assertEqual(app.WebSite, 'https://gitlab.com/eighthave/ci-test-app')
-        self.assertEqual(app.Repo, 'https://gitlab.com/eighthave/ci-test-app.git')
+        self.assertEqual(app.WebSite, 'https://gitlab.com/fdroid/ci-test-app')
+        self.assertEqual(app.Repo, 'https://gitlab.com/fdroid/ci-test-app.git')
 
 
 if __name__ == "__main__":