cubicweb/devtools/fake.py
changeset 11725 904ee9cd0cf9
parent 11057 0b59724cb3f2
child 11756 60fed6272771
--- a/cubicweb/devtools/fake.py	Thu Oct 20 18:28:46 2016 +0200
+++ b/cubicweb/devtools/fake.py	Fri Oct 21 13:09:47 2016 +0200
@@ -65,7 +65,9 @@
             kwargs['vreg'] = CWRegistryStore(FakeConfig(), initlog=False)
         kwargs['https'] = False
         self._http_method = kwargs.pop('method', 'GET')
-        self._url = kwargs.pop('url', None) or 'view?rql=Blop&vid=blop'
+        self._url = kwargs.pop('url', None)
+        if self._url is None:
+            self._url = 'view?rql=Blop&vid=blop'
         super(FakeRequest, self).__init__(*args, **kwargs)
         self._session_data = {}