(self, connection)
| 1564 | ) |
| 1565 | |
| 1566 | def test_seven(self, connection): |
| 1567 | self._test( |
| 1568 | connection, |
| 1569 | literal(datetime.timedelta(seconds=10)) |
| 1570 | - literal(datetime.timedelta(seconds=10)), |
| 1571 | "all", |
| 1572 | overrides={ |
| 1573 | "hour": 0, |
| 1574 | "minute": 0, |
| 1575 | "month": 0, |
| 1576 | "year": 0, |
| 1577 | "day": 0, |
| 1578 | "epoch": 0, |
| 1579 | }, |
| 1580 | ) |
| 1581 | |
| 1582 | def test_eight(self, connection): |
| 1583 | t = self.tables.t |