From 3dc36a0d7a1425c58f77c299fcf73ed27f78bd0c Mon Sep 17 00:00:00 2001 From: Mike Fedosin Date: Wed, 11 Oct 2017 22:52:55 +0300 Subject: [PATCH] Remove accidentally left import of pprint Change-Id: I8bc73741e2185c8c7cdfb7d175fbaad8ef4eea1c --- glare/tests/functional/test_all.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/glare/tests/functional/test_all.py b/glare/tests/functional/test_all.py index e27af72..55ca197 100644 --- a/glare/tests/functional/test_all.py +++ b/glare/tests/functional/test_all.py @@ -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'