1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

Open yaml files with utf-8 encoding for extra_model_paths.yaml (#6807)

* Using utf-8 encoding for yaml files.

* Fix test assertion.
This commit is contained in:
Robin Huang
2025-02-13 17:39:04 -08:00
committed by GitHub
parent 019c7029ea
commit 042a905c37
2 changed files with 2 additions and 2 deletions

View File

@@ -114,7 +114,7 @@ def test_load_extra_model_paths_expands_userpath(
mock_yaml_safe_load.assert_called_once()
# Check if open was called with the correct file path
mock_file.assert_called_once_with(dummy_yaml_file_name, 'r')
mock_file.assert_called_once_with(dummy_yaml_file_name, 'r', encoding='utf-8')
@patch('builtins.open', new_callable=mock_open)