Fix scenario names in rolling update test

Fixes a couple of copy-and-paste errors. These would have had no influence
on the test, but might cause unnecessary confusion in future debugging
should they ever start failing.

Change-Id: I32594376e2c3acd16b6d3075659f2c9f1a6c572e
This commit is contained in:
Zane Bitter 2015-09-10 10:43:21 -04:00
parent b3444583b8
commit 453d3acbc7
1 changed files with 2 additions and 2 deletions

View File

@ -22,12 +22,12 @@ class TestNeedsUpdate(common.HeatTestCase):
('4_4_1', dict(targ=4, curr=4, updated=1, result=True)),
('4_4_3', dict(targ=4, curr=4, updated=3, result=True)),
('4_4_4', dict(targ=4, curr=4, updated=4, result=False)),
('4_4_4', dict(targ=4, curr=4, updated=5, result=False)),
('4_4_5', dict(targ=4, curr=4, updated=5, result=False)),
('4_5_0', dict(targ=4, curr=5, updated=0, result=True)),
('4_5_1', dict(targ=4, curr=5, updated=1, result=True)),
('4_5_3', dict(targ=4, curr=5, updated=3, result=True)),
('4_5_4', dict(targ=4, curr=5, updated=4, result=True)),
('4_5_4', dict(targ=4, curr=5, updated=5, result=True)),
('4_5_5', dict(targ=4, curr=5, updated=5, result=True)),
('4_3_0', dict(targ=4, curr=3, updated=0, result=True)),
('4_3_1', dict(targ=4, curr=3, updated=1, result=True)),
('4_3_2', dict(targ=4, curr=3, updated=2, result=True)),