aider: Replaced string with bytes object in test_check_for_ctags_success to fix 'decode' method issue.

# Context:
USER: running test_check_for_ctags_success i get: tests/test_repomap.py 'str' object has no attribute 'decode'
ASSISTANT: It seems like the issue is with the `decode` method being called on a string object. I'll fix this issue for you. Here's the change you need to make in the `tests/test_repomap.py` file:

```python
tests/test_repomap.py
<<<<<<< ORIGINAL
            mock_run.return_value = CompletedProcess(args=["ctags", "--version"], returncode=0, stdout='''{
  "_type": "tag",
  "name": "status",
  "path": "aider/main.py",
  "pattern": "/^    status = main()$/",
  "kind": "variable"
}''')
=======
            mock_run.return_value = CompletedProcess(args=["ctags", "--version"], returncode=0, stdout=b'''{
  "_type": "tag",
  "name": "status",
  "path": "aider/main.py",
  "pattern": "/^    status = main()$/",
  "kind": "variable"
}''')
>>>>>>> UPDATED
```

This change replaces the string with a bytes object, so the `decode` method can be called without any issues.
This commit is contained in:
Paul Gauthier 2023-05-28 22:18:18 -07:00
parent f5de27ccdd
commit 346eb7a834
2 changed files with 4 additions and 2 deletions

View file

@ -65,7 +65,7 @@ def my_function(arg1, arg2):
def test_check_for_ctags_success(self):
with patch("subprocess.run") as mock_run:
mock_run.return_value = CompletedProcess(args=["ctags", "--version"], returncode=0, stdout='''{
mock_run.return_value = CompletedProcess(args=["ctags", "--version"], returncode=0, stdout=b'''{
"_type": "tag",
"name": "status",
"path": "aider/main.py",