Use self.assertEqual instead of assert

Change-Id: Icae26d907eec2c4ab9f430c69491a96bd549c45a
This commit is contained in:
aviau 2014-08-18 11:00:13 -04:00
parent bc39af5d4f
commit 12906fd952
1 changed files with 1 additions and 1 deletions

View File

@ -19,5 +19,5 @@ class TestRootController(functionalTest.FunctionalTest):
def test_get(self):
response = self.app.get('/v1/hello')
assert response.body == b"Hello World!"
self.assertEqual(response.body, b"Hello World!")
assert response.status_int == 200