We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b00e95 commit 94cef91Copy full SHA for 94cef91
python_files/tests/test_shell_integration.py
@@ -66,11 +66,13 @@ def test_print_statement_darwin(monkeypatch):
66
importlib.reload(pythonrc)
67
with monkeypatch.context() as m:
68
m.setattr("builtins.print", Mock())
69
+ importlib.reload(sys.modules["pythonrc"])
70
print.assert_any_call("Cmd click to launch VS Code Native REPL")
71
72
if sys.platform == "win32":
73
def test_print_statement_non_darwin(monkeypatch):
74
75
76
m.setattr('builtins.print', Mock())
77
78
print.assert_any_call("Ctrl click to launch VS Code Native REPL")
0 commit comments