Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Nov 2, 2022
1 parent c28673c commit 65cbb7f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 65cbb7f

Please sign in to comment.