Commit 611526cd authored by Peter Parente's avatar Peter Parente

Fix test_gid_change expectation

parent da11c315
......@@ -56,7 +56,9 @@ def test_gid_change(container):
command=['start.sh', 'id']
)
c.wait(timeout=10)
assert 'gid=110(users)' in c.logs(stdout=True).decode('utf-8')
logs = c.logs(stdout=True).decode('utf-8')
assert 'gid=100(users)' in logs
assert 'groups=110(jovyan)' in logs
def test_sudo(container):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment