test: remove unnecessary paginate parameter in cmd_web test

This commit is contained in:
Paul Gauthier 2024-08-27 14:10:56 -07:00 committed by Paul Gauthier (aider)
parent 38bde441a6
commit 714c991230

View file

@ -35,7 +35,7 @@ class TestScrape(unittest.TestCase):
self.commands.io.tool_error = mock_print_error self.commands.io.tool_error = mock_print_error
# Run the cmd_web command # 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 # Assert that the result contains some content
self.assertIsNotNone(result) self.assertIsNotNone(result)