Skip to content

Commit

Permalink
Fixed test on python 3.5 and 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain MARIE committed Jun 21, 2021
1 parent 8b2baaa commit 4b251e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyfields/tests/issues/test_issue_84.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Foo(ABC):
g = Foo()
assert g.a == 0

if sys.version_info < (3,):
if sys.version_info < (3, 7):
# errors below wont be raised anyway
return

Expand All @@ -77,7 +77,7 @@ class Foo(ABC):
f = Foo()
assert str(f) == "Foo(a=0)"

if sys.version_info < (3,):
if sys.version_info < (3, 7):
# errors below wont be raised anyway
return

Expand Down

0 comments on commit 4b251e2

Please sign in to comment.