Skip to content

Commit 4b251e2

Browse files
author
Sylvain MARIE
committed
Fixed test on python 3.5 and 3.6
1 parent 8b2baaa commit 4b251e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyfields/tests/issues/test_issue_84.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class Foo(ABC):
5555
g = Foo()
5656
assert g.a == 0
5757

58-
if sys.version_info < (3,):
58+
if sys.version_info < (3, 7):
5959
# errors below wont be raised anyway
6060
return
6161

@@ -77,7 +77,7 @@ class Foo(ABC):
7777
f = Foo()
7878
assert str(f) == "Foo(a=0)"
7979

80-
if sys.version_info < (3,):
80+
if sys.version_info < (3, 7):
8181
# errors below wont be raised anyway
8282
return
8383

0 commit comments

Comments
 (0)