Merge "Replace six.iteritems() with .items()"

This commit is contained in:
Jenkins 2017-04-10 05:46:38 +00:00 committed by Gerrit Code Review
commit 40e315d8c4
1 changed files with 1 additions and 3 deletions

View File

@ -12,8 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
import six
from oslo_concurrency.fixture import lockutils
from tempest.lib import decorators
from tempest import test
@ -96,7 +94,7 @@ class TaskTypesTestsV2(base.TestCase):
self.assertEqual(200, resp.status)
bt = body['tasks']
ll = [[v for k, v in six.iteritems(d) if 'type' in k] for d in bt]
ll = [[v for k, v in d.items() if 'type' in k] for d in bt]
types_list = [item for sublist in ll for item in sublist]
self.assertIn(