cubicweb/web/test/unittest_application.py
changeset 12503 b01dd0ef43aa
parent 12355 c703dc95c82e
child 12567 26744ad37953
--- a/cubicweb/web/test/unittest_application.py	Wed Mar 13 13:37:49 2019 +0100
+++ b/cubicweb/web/test/unittest_application.py	Thu Mar 14 14:43:18 2019 +0100
@@ -760,18 +760,6 @@
             req.form['rql'] = 'rql:Any OV1, X WHERE X custom_workflow OV1?'
             self.app_handle_request(req)
 
-    def test_handle_deprecation(self):
-        """Test deprecation warning for *_handle methods."""
-        with self.admin_access.web_request(url='foo') as req:
-            with self.assertWarns(DeprecationWarning) as cm:
-                self.app.core_handle(req, 'foo')
-            self.assertIn('path argument got removed from "core_handle"',
-                          str(cm.warning))
-            with self.assertWarns(DeprecationWarning) as cm:
-                self.app.main_handle_request('foo', req)
-            self.assertIn('entry point arguments are now (req, path)',
-                          str(cm.warning))
-
 
 if __name__ == '__main__':
     unittest_main()