We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents9410acb +51964b3 commit4eca9b9Copy full SHA for 4eca9b9
tests/unit/test_config.py
@@ -305,7 +305,7 @@ def test_data_from_helper(m_open, monkeypatch, tmp_path):
305
@mock.patch("builtins.open")
306
@pytest.mark.skipif(sys.platform.startswith("win"),reason="Not supported on Windows")
307
deftest_from_helper_subprocess_error_raises_error(m_open,monkeypatch):
308
-# using/usr/bin/false here to force a non-zero return code
+# using false here to force a non-zero return code
309
fd=io.StringIO(
310
dedent(
311
"""\
@@ -314,7 +314,7 @@ def test_from_helper_subprocess_error_raises_error(m_open, monkeypatch):
314
315
[helper]
316
url = https://helper.url
317
- oauth_token = helper:/usr/bin/false
+ oauth_token = helper: false
318
"""
319
)
320