[Py34] api.openstack.test_faults.TestFaultWrapper

`webob.response.Response._body__get_` returns binary value. It should be
decoded, so we will be able to check string contains substring.

Related bp nova-python3-mitaka

Change-Id: I38cbc4b62b29d063c795ac64f76d267ac463a072
This commit is contained in:
Andrey Kurilin 2015-10-06 16:03:30 +03:00 committed by Andrey Kurilin
parent cc1ff0051a
commit db2a5bad0b
2 changed files with 1 additions and 3 deletions

View File

@ -16,7 +16,6 @@
import mock
from oslo_serialization import jsonutils
import six
import webob
import webob.dec
import webob.exc
@ -57,7 +56,7 @@ class TestFaultWrapper(test.NoDBTestCase):
# translate().
mock_translate.assert_any_call(u'Should be translated.', None)
# The return value from translate() should appear in the response.
self.assertIn("I've been translated!", six.text_type(response.body))
self.assertIn("I've been translated!", response.body.decode("UTF-8"))
class TestFaults(test.NoDBTestCase):

View File

@ -139,7 +139,6 @@ nova.tests.unit.api.openstack.compute.test_volumes.VolumeApiTestV2
nova.tests.unit.api.openstack.compute.test_volumes.VolumeApiTestV21
nova.tests.unit.api.openstack.compute.test_volumes.VolumeAttachTestsV2
nova.tests.unit.api.openstack.compute.test_volumes.VolumeAttachTestsV21
nova.tests.unit.api.openstack.test_faults.TestFaultWrapper
nova.tests.unit.api.test_compute_req_id.RequestIdTest
nova.tests.unit.api.test_validator.ValidatorTestCase
nova.tests.unit.api.test_wsgi.Test