Commit 19f1bd92 authored by Peter Parente's avatar Peter Parente

Fix second test_gid_change expectation

parent 611526cd
...@@ -58,7 +58,7 @@ def test_gid_change(container): ...@@ -58,7 +58,7 @@ def test_gid_change(container):
c.wait(timeout=10) c.wait(timeout=10)
logs = c.logs(stdout=True).decode('utf-8') logs = c.logs(stdout=True).decode('utf-8')
assert 'gid=100(users)' in logs assert 'gid=100(users)' in logs
assert 'groups=110(jovyan)' in logs assert 'groups=100(users),110(jovyan)' in logs
def test_sudo(container): 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