We want to silence all PendingDeprecationWarning when testing the completer
(self)
| 148 | |
| 149 | class TestCompleter(unittest.TestCase): |
| 150 | def setUp(self): |
| 151 | """ |
| 152 | We want to silence all PendingDeprecationWarning when testing the completer |
| 153 | """ |
| 154 | self._assertwarns = self.assertWarns(PendingDeprecationWarning) |
| 155 | self._assertwarns.__enter__() |
| 156 | |
| 157 | def tearDown(self): |
| 158 | try: |