summaryrefslogtreecommitdiff
path: root/oslo_utils/tests/test_fixture.py
diff options
context:
space:
mode:
Diffstat (limited to 'oslo_utils/tests/test_fixture.py')
-rw-r--r--oslo_utils/tests/test_fixture.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/oslo_utils/tests/test_fixture.py b/oslo_utils/tests/test_fixture.py
index 5775136..b106f15 100644
--- a/oslo_utils/tests/test_fixture.py
+++ b/oslo_utils/tests/test_fixture.py
@@ -17,7 +17,6 @@
import datetime
from oslotest import base as test_base
-import six
from oslo_utils import fixture
from oslo_utils.fixture import uuidsentinel as uuids
@@ -81,4 +80,4 @@ class UUIDSentinelsTest(test_base.BaseTestCase):
def test_with_underline_prefix(self):
ex = self.assertRaises(AttributeError, getattr, uuids, '_foo')
- self.assertIn("Sentinels must not start with _", six.text_type(ex))
+ self.assertIn("Sentinels must not start with _", str(ex))