summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Husted <sigstop@gmail.com>2021-06-04 15:28:17 -0700
committerJustin Husted <sigstop@gmail.com>2021-06-04 15:28:17 -0700
commitbf4e896460af5bdc60a5855c0ba37974af0f2671 (patch)
treef142bf333b5b979a3889c0d9a1493e5d894c7d91
parentd937e485b6616361de176f7229809b61abbbdde2 (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.py4
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)