Merge "Remove accidentally left import of pprint"

This commit is contained in:
Zuul 2017-10-18 13:07:29 +00:00 committed by Gerrit Code Review
commit 5385bd63e4
1 changed files with 1 additions and 2 deletions

View File

@ -32,8 +32,7 @@ class TestAll(base.TestArtifact):
# get all possible artifacts
url = '/all?sort=name:asc&limit=100'
res = self.get(url=url, status=200)['all']
from pprint import pformat
self.assertEqual(54, len(res), pformat(res))
self.assertEqual(54, len(res))
# get artifacts with latest versions
url = '/all?version=latest&sort=name:asc'