diff --git a/tests/test_tags.py b/tests/test_tags.py index 84d718be..5a28db9f 100644 --- a/tests/test_tags.py +++ b/tests/test_tags.py @@ -842,9 +842,7 @@ def test__generic_abi_linux_cpython(self, monkeypatch): assert tags._generic_abi(sys.version_info[:2]) == ["cp37m"] def test__generic_abi_jp(self, monkeypatch): - config = { - "SOABI": "return exactly this" - } + config = {"SOABI": "return exactly this"} monkeypatch.setattr(sysconfig, "get_config_var", config.__getitem__) monkeypatch.setattr(tags, "interpreter_name", lambda: "other") assert tags._generic_abi(sys.version_info[:2]) == ["return exactly this"]