Remove six
Python 2 is no longer supported, thus usage of six can be removed.
Change-Id: I7b5038fa45de0972da064da384b47ba94785613c
diff --git a/designate_tempest_plugin/tests/base.py b/designate_tempest_plugin/tests/base.py
index 2e02a8c..2edc747 100644
--- a/designate_tempest_plugin/tests/base.py
+++ b/designate_tempest_plugin/tests/base.py
@@ -11,7 +11,6 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
-import six
from tempest import test
from tempest import config
from tempest.lib.common.utils import test_utils as utils
@@ -91,7 +90,7 @@
)
def assertExpected(self, expected, actual, excluded_keys):
- for key, value in six.iteritems(expected):
+ for key, value in expected.items():
if key not in excluded_keys:
self.assertIn(key, actual)
self.assertEqual(value, actual[key], key)