From dc80d2162c86d7b59464ea9f581a87070235e953 Mon Sep 17 00:00:00 2001 From: Lawrie Brunswick <85261391+lawrieb@users.noreply.github.com> Date: Thu, 7 Mar 2024 20:32:36 -0800 Subject: [PATCH] Update test_app.py --- bookworm/tests/test_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookworm/tests/test_app.py b/bookworm/tests/test_app.py index c13462a..c8a8eef 100644 --- a/bookworm/tests/test_app.py +++ b/bookworm/tests/test_app.py @@ -108,8 +108,8 @@ def test_execute_query(self): with patch('streamlit.write') as mock_write: execute_query("Title", "The Great Gatsby", 8.0, 20) mock_write.assert_called_once_with( - """Searching for books using Title, value: The Great Gatsby, - min average rating: 8.0, min number of ratings: 20""") + "Searching for books using Title, value: The Great Gatsby," + "min average rating: 8.0, min number of ratings: 20") if __name__ == '__main__':