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 2394b27 commit 9302ef3Copy full SHA for 9302ef3
1 file changed
Lib/test/support/__init__.py
@@ -3084,7 +3084,7 @@ def support_remote_exec_only(test):
3084
if not sys.is_remote_debug_enabled():
3085
return unittest.skip("Remote debugging is not enabled")(test)
3086
if sys.platform != "darwin" and sys.platform != "linux" and sys.platform != "win32":
3087
- return unittest.skip("Test only runs on Linux, Windows and MacOS")(test)
+ return unittest.skip("Test only runs on Linux, Windows and macOS")(test)
3088
if sys.platform == "linux" and not _supports_remote_attaching():
3089
return unittest.skip("Test only runs on Linux with process_vm_readv support")(test)
3090
return _id(test)
0 commit comments