From 714c991230eb25126e4ab6c3764bed12f0c98e8a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 27 Aug 2024 14:10:56 -0700 Subject: [PATCH] test: remove unnecessary paginate parameter in cmd_web test --- tests/scrape/test_scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scrape/test_scrape.py b/tests/scrape/test_scrape.py index a959e2963..64de64fdc 100644 --- a/tests/scrape/test_scrape.py +++ b/tests/scrape/test_scrape.py @@ -35,7 +35,7 @@ class TestScrape(unittest.TestCase): self.commands.io.tool_error = mock_print_error # Run the cmd_web command - result = self.commands.cmd_web("https://example.com", paginate=False) + result = self.commands.cmd_web("https://example.com") # Assert that the result contains some content self.assertIsNotNone(result)