summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLowell Alleman <lowell@kintyre.co>2020-06-09 20:58:05 -0400
committerLowell Alleman <lowell@kintyre.co>2020-06-09 20:58:05 -0400
commit75d0801a4d74f6ee0356091687b43d51af0c8a23 (patch)
treeb26c8b161f611e8def7af93aea9a7f038accc297
parentbc676d0191c61e93bd00d0d8ba818c110e710ecd (diff)
downloadcroniter-75d0801a4d74f6ee0356091687b43d51af0c8a23.tar.gz
Minor unit test fix
Fixed assertion against wrong variable (typo)
-rwxr-xr-xsrc/croniter/tests/test_croniter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/croniter/tests/test_croniter.py b/src/croniter/tests/test_croniter.py
index d0b435d..fd4b3a2 100755
--- a/src/croniter/tests/test_croniter.py
+++ b/src/croniter/tests/test_croniter.py
@@ -1018,7 +1018,7 @@ class CroniterTest(base.TestCase):
itt.get_next(datetime).isoformat(),
itt.get_next(datetime).isoformat(),
]
- self.assertEqual(ret, [
+ self.assertEqual(rett, [
'2020-03-30T02:01:00+02:00',
'2020-03-29T01:01:00+01:00',
'2020-03-28T03:01:00+01:00',