From abf6bebe37cc7a71138b24ffc59301377cfefc7a Mon Sep 17 00:00:00 2001 From: asim-shrestha Date: Sun, 20 Oct 2024 13:40:53 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84=20Move=20and=20rename=20stuff?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_example_eval.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_example_eval.py b/tests/test_example_eval.py index 911be4f..4f29cab 100644 --- a/tests/test_example_eval.py +++ b/tests/test_example_eval.py @@ -266,7 +266,8 @@ def test_goal_non_str() -> None: ) def test_har_file_path_valid(overrides, expected_path, mocker): mocker.patch( - "bananalyzer.data.example_fetching.get_examples_path", return_value=Path("path/to") + "bananalyzer.data.example_fetching.get_examples_path", + return_value=Path("path/to"), ) mocker.patch("os.path.exists", return_value=True) @@ -291,7 +292,8 @@ def test_har_file_path_valid(overrides, expected_path, mocker): ) def test_har_file_path_invalid(overrides, mocker): mocker.patch( - "bananalyzer.data.example_fetching.get_examples_path", return_value=Path("path/to") + "bananalyzer.data.example_fetching.get_examples_path", + return_value=Path("path/to"), ) mocker.patch("os.path.exists", return_value=False)