(self, connection)
| 1494 | ) |
| 1495 | |
| 1496 | def test_seven(self, connection): |
| 1497 | self._test( |
| 1498 | connection, |
| 1499 | literal(datetime.timedelta(seconds=10)) |
| 1500 | - literal(datetime.timedelta(seconds=10)), |
| 1501 | "all", |
| 1502 | overrides={ |
| 1503 | "hour": 0, |
| 1504 | "minute": 0, |
| 1505 | "month": 0, |
| 1506 | "year": 0, |
| 1507 | "day": 0, |
| 1508 | "epoch": 0, |
| 1509 | }, |
| 1510 | ) |
| 1511 | |
| 1512 | def test_eight(self, connection): |
| 1513 | t = self.tables.t |