From c42d0db94cc28216577ae92251d1240547393a2c Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Tue, 6 Feb 2024 19:35:30 -0500 Subject: [PATCH] test: Fix expectation for csvlook --max-rows 0 --- tests/test_utilities/test_csvlook.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_utilities/test_csvlook.py b/tests/test_utilities/test_csvlook.py index 47f395e3f..33b5c2582 100644 --- a/tests/test_utilities/test_csvlook.py +++ b/tests/test_utilities/test_csvlook.py @@ -114,7 +114,6 @@ def test_max_rows(self): self.assertLines(['--max-rows', '0', 'examples/dummy.csv'], [ '| a | b | c |', '| - | - | - |', - '| ... | ... | ... |', ]) def test_max_columns(self):