From b635e2ed39dec5aa007fb5919a28783f25b5522f Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Mon, 7 Sep 2015 13:38:12 +0200 Subject: [PATCH] openstack: fix teuthology config test for clone The test failed because it looked for upload= instead of clone= Signed-off-by: Loic Dachary --- teuthology/openstack/test/test_openstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/openstack/test/test_openstack.py b/teuthology/openstack/test/test_openstack.py index c9723b548..9d8dcc6d7 100644 --- a/teuthology/openstack/test/test_openstack.py +++ b/teuthology/openstack/test/test_openstack.py @@ -109,7 +109,7 @@ openstack keypair delete {key_name} || true assert "nworkers=" + str(args.simultaneous_jobs) in variables assert "username=" + teuthology.username in variables assert "upload=--archive-upload user@archive:/tmp" in variables - assert "upload=git clone" in variables + assert "clone=git clone" in variables assert os.environ['OS_AUTH_URL'] in variables out, err = capsys.readouterr() -- 2.47.3