From 79f56a2898a981b20fb3c27f2895453cf2b9c8f8 Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Tue, 8 Mar 2022 20:52:53 +0100 Subject: [PATCH] Apply review suggestion Co-authored-by: Brett Cannon --- tests/test_tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tags.py b/tests/test_tags.py index 724003219..06cd3b4a2 100644 --- a/tests/test_tags.py +++ b/tests/test_tags.py @@ -235,7 +235,7 @@ def test_version_detection(self, monkeypatch): platforms = list(tags.mac_platforms(arch="x86_64")) if (major, minor) == ("10", "16"): print(platforms, "macosx_11+") - # the real version is at least 11.0 + # For 10.16, the real version is at least 11.0. prefix, major, minor, _ = platforms[0].split("_", maxsplit=3) assert prefix == "macosx" assert int(major) >= 11