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

This commit is contained in:
Jenkins 2016-12-06 10:53:04 +00:00 committed by Gerrit Code Review
commit 6bea467740
1 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@
# under the License.
import datetime
import six
import mock
@ -60,7 +59,7 @@ class TestModelTestMethods(base.BaseIntegrationTest):
.first()
def check_model_obj_attrs(self, obj, attrs):
for attr_name, attr_val in six.iteritems(attrs):
for attr_name, attr_val in attrs.items():
self.assertEqual(attr_val, getattr(obj, attr_name))
def test_add_result(self):