Browse Source

Possibly fix mysql timestamp issue in Travis run

pull/72/head
Pēteris Caune 8 years ago
parent
commit
78a32d109a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      hc/api/tests/test_list_checks.py

+ 1
- 1
hc/api/tests/test_list_checks.py View File

@ -11,7 +11,7 @@ class ListChecksTestCase(BaseTestCase):
def setUp(self):
super(ListChecksTestCase, self).setUp()
self.now = now()
self.now = now().replace(microsecond=0)
self.a1 = Check(user=self.alice, name="Alice 1")
self.a1.timeout = td(seconds=3600)


Loading…
Cancel
Save