cubicweb/devtools/repotest.py
changeset 12035 2fcb9339f69a
parent 12024 5f46195b9595
child 12039 7514626e1dc5
--- a/cubicweb/devtools/repotest.py	Fri Mar 10 16:55:57 2017 +0100
+++ b/cubicweb/devtools/repotest.py	Fri Mar 10 17:03:28 2017 +0100
@@ -135,7 +135,7 @@
 from rql import RQLHelper
 
 from cubicweb.devtools.testlib import BaseTestCase
-from cubicweb.devtools.fake import FakeRepo, FakeConfig, FakeSession, FakeRequest
+from cubicweb.devtools.fake import FakeRepo, FakeConfig, FakeRequest, FakeConnection
 from cubicweb.server import set_debug, debugged
 from cubicweb.server.querier import QuerierHelper
 from cubicweb.server.session import Session
@@ -182,7 +182,7 @@
         #print '********* solutions', solutions
         self.rqlhelper.simplify(union)
         #print '********* simplified', union.as_string()
-        plan = self.qhelper.plan_factory(union, {}, FakeSession(self.repo))
+        plan = self.qhelper.plan_factory(union, {}, FakeConnection(self.repo))
         plan.preprocess(union)
         for select in union.children:
             select.solutions.sort(key=lambda x: list(x.items()))