summaryrefslogtreecommitdiff
path: root/tests/gamelocker_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gamelocker_test.py')
-rw-r--r--tests/gamelocker_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gamelocker_test.py b/tests/gamelocker_test.py
index 2af10e2..92ab2b2 100644
--- a/tests/gamelocker_test.py
+++ b/tests/gamelocker_test.py
@@ -81,8 +81,8 @@ class TestGamelocker:
def fromiso(s):
return datetime.datetime.strptime(s, "%Y-%m-%dT%H:%M:%SZ")
- start = "2017-01-11T02:25:00Z"
- end = "2017-01-11T02:30:00Z"
+ start = "2017-01-10T02:25:00Z"
+ end = "2017-01-12T02:30:00Z"
matches = api.matches(createdAtStart=start, createdAtEnd=end)
for match in matches:
assert fromiso(end) >= fromiso(match.createdAt) >= fromiso(start)