From: Justin Husted Date: Fri, 4 Jun 2021 22:28:17 +0000 (-0700) Subject: Fix python test_list X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=bf4e896460af5bdc60a5855c0ba37974af0f2671;p=bcachefs-tools-debian Fix python test_list The test arbitrarily checked some printed output which changed. Signed-off-by: Justin Husted --- diff --git a/tests/test_basic.py b/tests/test_basic.py index 47b621c..6278102 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)