From: Vicente Cheng Date: Wed, 1 Apr 2020 04:14:12 +0000 (+0000) Subject: test_repo_utils: add another url type to url_to_dirname test X-Git-Tag: 1.1.0~134^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1178%2Fhead;p=teuthology.git test_repo_utils: add another url type to url_to_dirname test Signed-off-by: Vicente Cheng --- diff --git a/teuthology/test/test_repo_utils.py b/teuthology/test/test_repo_utils.py index c87453f0a0..3e93980e2a 100644 --- a/teuthology/test/test_repo_utils.py +++ b/teuthology/test/test_repo_utils.py @@ -192,6 +192,7 @@ class TestRepoUtils(object): pass URLS_AND_DIRNAMES = [ + ('git@git.ceph.com/ceph-qa-suite.git', 'git.ceph.com_ceph-qa-suite'), ('git://git.ceph.com/ceph-qa-suite.git', 'git.ceph.com_ceph-qa-suite'), ('https://github.com/ceph/ceph', 'github.com_ceph_ceph'), ('https://github.com/liewegas/ceph.git', 'github.com_liewegas_ceph'),