From 26ed0389ea114b92ec8310bc450c8331769033d2 Mon Sep 17 00:00:00 2001 From: Greg Back Date: Wed, 1 Feb 2017 12:50:43 -0600 Subject: [PATCH] Fix invalid numeric literals --- stix2/test/test_stix2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stix2/test/test_stix2.py b/stix2/test/test_stix2.py index 95d0dcd..511ee08 100644 --- a/stix2/test/test_stix2.py +++ b/stix2/test/test_stix2.py @@ -10,7 +10,7 @@ import stix2 amsterdam = pytz.timezone('Europe/Amsterdam') eastern = pytz.timezone('US/Eastern') -FAKE_TIME = datetime.datetime(2017, 01, 01, 12, 34, 56, tzinfo=pytz.utc) +FAKE_TIME = datetime.datetime(2017, 1, 1, 12, 34, 56, tzinfo=pytz.utc) # Inspired by: http://stackoverflow.com/a/24006251