summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSagi Buchbinder-Shadur <saroad2@gmail.com>2023-05-03 11:16:59 -0400
committerGitHub <noreply@github.com>2023-05-03 11:16:59 -0400
commit6e05e1fa1c2804410f9916b27edc07076e3b156d (patch)
treea18ae2459a4690f23f612aebce6645a8a897ce9b /tests
parent9c6f032681e38a60ce526335f2abf166191f692d (diff)
downloadclick-6e05e1fa1c2804410f9916b27edc07076e3b156d.tar.gz
Update dependencies using pip-compile-multi (#2508)
Diffstat (limited to 'tests')
-rw-r--r--tests/test_arguments.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_arguments.py b/tests/test_arguments.py
index 735df4b..3395c55 100644
--- a/tests/test_arguments.py
+++ b/tests/test_arguments.py
@@ -1,4 +1,5 @@
import sys
+from unittest import mock
import pytest
@@ -86,9 +87,12 @@ def test_bytes_args(runner, monkeypatch):
), "UTF-8 encoded argument should be implicitly converted to Unicode"
# Simulate empty locale environment variables
- monkeypatch.setattr(sys.stdin, "encoding", "utf-8")
monkeypatch.setattr(sys, "getfilesystemencoding", lambda: "utf-8")
monkeypatch.setattr(sys, "getdefaultencoding", lambda: "utf-8")
+ # sys.stdin.encoding is readonly, needs some extra effort to patch.
+ stdin = mock.Mock(wraps=sys.stdin)
+ stdin.encoding = "utf-8"
+ monkeypatch.setattr(sys, "stdin", stdin)
runner.invoke(
from_bytes,