test/cli/test_create: remove errant print()

This commit is contained in:
Brian Warner 2016-12-07 17:28:52 -08:00
parent 5a5da0de2a
commit d5f3d47483

View File

@ -52,7 +52,6 @@ class Config(unittest.TestCase):
with txi2p, txtorcon: with txi2p, txtorcon:
basedir = self.mktemp() basedir = self.mktemp()
rc, out, err = yield run_cli("create-client", "--hide-ip", basedir) rc, out, err = yield run_cli("create-client", "--hide-ip", basedir)
print(rc, out, err)
self.assertTrue(rc != 0, out) self.assertTrue(rc != 0, out)
self.assertTrue('pip install tahoe-lafs[i2p]' in out) self.assertTrue('pip install tahoe-lafs[i2p]' in out)
self.assertTrue('pip install tahoe-lafs[tor]' in out) self.assertTrue('pip install tahoe-lafs[tor]' in out)