tests: remove debugging prints

This change clean-up after https://review.openstack.org/630078
and removes useless debugging prints.

Change-Id: I02cf149860b40aad75a6132f41c5c430912cc247
This commit is contained in:
Tristan Cacqueray 2019-03-08 07:00:43 +00:00
parent 603ce6f474
commit 0a24b01e89
1 changed files with 0 additions and 3 deletions

View File

@ -875,9 +875,6 @@ class TestArtifacts(ZuulDBTestCase, BaseTestWeb, AnsibleZuulTestCase):
project_bs = [x for x in buildsets if x["project"] == "org/project"][0]
buildset = self.get_url(
"api/tenant/tenant-one/buildset/%s" % project_bs['uuid']).json()
print("X" * 120)
print(buildset)
print("Y" * 120)
self.assertEqual(3, len(buildset["builds"]))
test1_build = [x for x in buildset["builds"]