Test: Fixed test that tried to use a floating point epoch date

This commit is contained in:
Paul Beckingham 2015-09-29 21:40:59 -04:00
parent f0e8d2027c
commit 628f6b5fa6

View file

@ -54,7 +54,7 @@ class TestTimesheet(TestCase):
# C0 completed, this week
# C1 completed, last week
# C2 completed, 2wks ago
now = time()
now = int(time())
seven = now - 7 * 86400
fourteen = now - 14 * 86400