Test admin app in test_admin_version_v3

This fix enables testing of admin app in test_admin_version_v3 as
test name suggests. The test itself remains skipped in this fix because
it depends on fix of a bug #1381961 which can't be properly tested
without this one.

Change-Id: I1b014506b1c83eb309991a6e581f9ef4189e0f2d
Closes-Bug: #1478504
This commit is contained in:
Alexey Miroshkin 2015-07-28 03:29:18 -07:00
parent 37b81c95ed
commit 5b62968493
1 changed files with 1 additions and 1 deletions

View File

@ -755,7 +755,7 @@ class VersionTestCase(tests.TestCase):
@utils.wip('waiting on bug #1381961')
def test_admin_version_v3(self):
client = tests.TestClient(self.public_app)
client = tests.TestClient(self.admin_app)
resp = client.get('/v3/')
self.assertEqual(200, resp.status_int)
data = jsonutils.loads(resp.body)