From e5a0ef4d8f5b8b4193483ee401d5e45a9c631776 Mon Sep 17 00:00:00 2001 From: Mark McLoughlin Date: Wed, 5 Sep 2012 22:17:24 +0100 Subject: [PATCH] Fix typo in simple_tenant_usage tests Simple s/futrue/future/ typo fix Change-Id: I110205c2392075ac8b7f7e423e466e1a6fbfab64 --- .../api/openstack/compute/contrib/test_simple_tenant_usage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/tests/api/openstack/compute/contrib/test_simple_tenant_usage.py b/nova/tests/api/openstack/compute/contrib/test_simple_tenant_usage.py index 64899d476ce..e468085ccf3 100644 --- a/nova/tests/api/openstack/compute/contrib/test_simple_tenant_usage.py +++ b/nova/tests/api/openstack/compute/contrib/test_simple_tenant_usage.py @@ -121,14 +121,14 @@ def _test_verify_index(self, start, stop): def test_verify_index(self): self._test_verify_index(START, STOP) - def test_verify_index_futrue_end_time(self): + def test_verify_index_future_end_time(self): future = NOW + datetime.timedelta(hours=HOURS) self._test_verify_index(START, future) def test_verify_show(self): self._test_verify_show(START, STOP) - def test_verify_show_futrue_end_time(self): + def test_verify_show_future_end_time(self): future = NOW + datetime.timedelta(hours=HOURS) self._test_verify_show(START, future)