Skip to content

Commit

Permalink
Merge "Fix typo in simple_tenant_usage tests"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Sep 6, 2012
2 parents 06dec8e + e5a0ef4 commit 32bb45d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 32bb45d

Please sign in to comment.