Skip to content

Commit 9c2d571

Browse files
committed
py 3.4/3.5 don't like the leading 0
1 parent f325964 commit 9c2d571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene/core/types/tests/test_custom_scalars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def test_date_time():
1111
def check_datetime(test_dt):
1212
assert test_dt.tzinfo == iso8601.UTC
1313
assert test_dt.year == 2016
14-
assert test_dt.month == 04
14+
assert test_dt.month == 4
1515
assert test_dt.day == 29
1616
assert test_dt.hour == 18
1717
assert test_dt.minute == 34

0 commit comments

Comments
 (0)