From d54203b8194f3a4bf83b44e9085ac77206c614a5 Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Wed, 12 Feb 2025 13:52:45 -0500 Subject: [PATCH] fix tests --- tests/ra_aid/tools/test_write_file.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ra_aid/tools/test_write_file.py b/tests/ra_aid/tools/test_write_file.py index 4810142..c768ffc 100644 --- a/tests/ra_aid/tools/test_write_file.py +++ b/tests/ra_aid/tools/test_write_file.py @@ -29,7 +29,8 @@ def test_basic_write_functionality(temp_test_dir): assert result["success"] is True assert result["filepath"] == str(test_file) assert result["bytes_written"] == len(content.encode("utf-8")) - assert "Operation completed" in result["message"] + assert "Successfully wrote" in result["message"] + assert "bytes" in result["message"] def test_directory_creation(temp_test_dir):