Fix the testname of scenario

Duplicated testname in scenarios will result duplicated testname
by testscenarios, they can not be sorted in PY33 env, and will
induce TypeError:
TypeError: unorderable types: StackManagerNoPaginationTest() <
StackManagerNoPaginationTest()

Close-Bug #1243096

Change-Id: I4c02c9f3868495ec4399f795e864f26afc3d26b7
This commit is contained in:
Kui Shi 2013-10-24 17:40:22 +08:00
parent ca72a42ad9
commit 30032302f3
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class StackManagerNoPaginationTest(testtools.TestCase):
('total_0', dict(total=0)),
('total_1', dict(total=1)),
('total_9', dict(total=9)),
('total_1', dict(total=10)),
('total_10', dict(total=10)),
('total_11', dict(total=11)),
('total_19', dict(total=19)),
('total_20', dict(total=20)),