fix broken test

This commit is contained in:
Paul Gauthier 2023-07-05 17:11:39 -07:00
parent e996c56a51
commit 5dba1624c7
2 changed files with 1 additions and 5 deletions

View file

@ -65,7 +65,7 @@ class TestCoder(unittest.TestCase):
# Mock the git repo
mock_repo = MagicMock()
mock_repo.git.ls_files.return_value = "./file1.txt\n./other/file1.txt"
mock_repo.git.ls_files.return_value = "file1.txt\nother/file1.txt"
coder.repo = mock_repo
# Call the check_for_file_mentions method