diff options
author | Justin Husted <sigstop@gmail.com> | 2021-06-04 15:28:17 -0700 |
---|---|---|
committer | Justin Husted <sigstop@gmail.com> | 2021-06-04 15:28:17 -0700 |
commit | bf4e896460af5bdc60a5855c0ba37974af0f2671 (patch) | |
tree | f142bf333b5b979a3889c0d9a1493e5d894c7d91 | |
parent | d937e485b6616361de176f7229809b61abbbdde2 (diff) |
Fix python test_list
The test arbitrarily checked some printed output which changed.
Signed-off-by: Justin Husted <sigstop@gmail.com>
-rw-r--r-- | tests/test_basic.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_basic.py b/tests/test_basic.py index 47b621c9..62781028 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -37,7 +37,9 @@ def test_list(tmpdir): assert ret.returncode == 0 assert len(ret.stderr) == 0 assert "recovering from clean shutdown" in ret.stdout - assert len(ret.stdout.splitlines()) == 95 + + # Totally arbitrary, feel free to update or remove after inspecting. + assert len(ret.stdout.splitlines()) == 97 def test_list_inodes(tmpdir): dev = util.format_1g(tmpdir) |