Skip to content

Commit 429de75

Browse files
Copilottoolate28
andcommitted
Specify UTF-8 encoding when reading ATOM decision file
Co-authored-by: toolate28 <[email protected]>
1 parent 5cfbfab commit 429de75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_agent_skills.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def test_atom_trail_file_created(self, tmp_path, monkeypatch):
393393
assert decision_file.exists()
394394

395395
# Verify file content
396-
with open(decision_file, 'r') as f:
396+
with open(decision_file, 'r', encoding='utf-8') as f:
397397
file_decision = json.load(f)
398398

399399
assert file_decision['atom_tag'] == atom_tag

0 commit comments

Comments
 (0)