devtools/httptest.py
changeset 9929 16163ee1cdf9
parent 9402 2c48c091b6a2
child 10235 684215aca046
--- a/devtools/httptest.py	Tue Jul 08 11:33:32 2014 +0200
+++ b/devtools/httptest.py	Tue Jun 17 11:53:35 2014 +0200
@@ -89,8 +89,6 @@
     * `anonymous_allowed`: flag telling if anonymous browsing should be allowed
     """
     configcls = CubicWebServerConfig
-    # anonymous is logged by default in cubicweb test cases
-    anonymous_allowed = True
 
     def start_server(self):
         # use a semaphore to avoid starting test while the http server isn't
@@ -185,8 +183,3 @@
             # Server could be launched manually
             print err
         super(CubicWebServerTC, self).tearDown()
-
-    @classmethod
-    def init_config(cls, config):
-        config.set_anonymous_allowed(cls.anonymous_allowed)
-        super(CubicWebServerTC, cls).init_config(config)