diff options
Diffstat (limited to 'tests/unittests/test_ec2_util.py')
-rw-r--r-- | tests/unittests/test_ec2_util.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/unittests/test_ec2_util.py b/tests/unittests/test_ec2_util.py index 6d25dcf9..dd588aca 100644 --- a/tests/unittests/test_ec2_util.py +++ b/tests/unittests/test_ec2_util.py @@ -25,7 +25,6 @@ class TestEc2Util(helpers.TestCase): userdata = eu.get_instance_userdata(self.VERSION, retries=0) self.assertEquals('', userdata) - @hp.activate def test_userdata_fetch_fail_server_dead(self): hp.register_uri(hp.GET, @@ -65,8 +64,6 @@ class TestEc2Util(helpers.TestCase): status=200, body='123') hp.register_uri(hp.GET, eu.combine_url(base_url, 'public-keys/'), status=200, body='0=my-public-key') - hp.register_uri(hp.GET, eu.combine_url(base_url, 'public-keys/'), - status=200, body='0=my-public-key') hp.register_uri(hp.GET, eu.combine_url(base_url, 'public-keys/0/openssh-key'), status=200, body='ssh-rsa AAAA.....wZEf my-public-key') @@ -76,7 +73,7 @@ class TestEc2Util(helpers.TestCase): self.assertEquals(1, len(md['public-keys'])) @hp.activate - def test_metadata_fetch_key(self): + def test_metadata_fetch_with_2_keys(self): base_url = 'http://169.254.169.254/%s/meta-data' % (self.VERSION) hp.register_uri(hp.GET, base_url, status=200, body="\n".join(['hostname', |