why did those tests fail??? (#117)

1.4 for pypi
This commit is contained in:
Noah Levitt 2018-08-22 14:35:39 -07:00 committed by GitHub
parent 02e98f101d
commit 88d3d3b310
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 20 deletions

View file

@ -53,9 +53,9 @@ def test_run_command(capsys, cmd):
proc = subprocess.Popen(
[cmd, '--version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = proc.communicate()
assert err == b''
assert out == ('brozzler %s - %s\n' % (
brozzler.__version__, cmd)).encode('ascii')
assert err == b''
def test_rethinkdb_up():
'''Check that rethinkdb is up and running.'''