Skip to content

Commit

Permalink
Remove test_traverse_simplediv, no longer needed on Python 3. Fixes #93.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 16, 2023
1 parent 7e8ba95 commit 8b1e203
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tests/test_zipp.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,19 +268,6 @@ def test_traverse_truediv(self, alpharep):
e = root / "b" / "d" / "e.txt"
assert e.read_text(encoding="utf-8") == "content of e"

@pass_alpharep
def test_traverse_simplediv(self, alpharep):
"""
Disable the __future__.division when testing traversal.
"""
code = compile(
source="zipp.Path(alpharep) / 'a'",
filename="(test)",
mode="eval",
dont_inherit=True,
)
eval(code)

@pass_alpharep
def test_pathlike_construction(self, alpharep):
"""
Expand Down

0 comments on commit 8b1e203

Please sign in to comment.