# HG changeset patch # User Sylvain Thénault # Date 1295624293 -3600 # Node ID a166b51d13f87db66bb05d6d0e92123c25ee3f09 # Parent 611aa2074a5b90d838dece37b1e373ab0189a252 [test] missing future imports diff -r 611aa2074a5b -r a166b51d13f8 web/test/unittest_application.py --- a/web/test/unittest_application.py Fri Jan 21 14:14:30 2011 +0100 +++ b/web/test/unittest_application.py Fri Jan 21 16:38:13 2011 +0100 @@ -17,6 +17,8 @@ # with CubicWeb. If not, see . """unit tests for cubicweb.web.application""" +from __future__ import with_statement + import base64, Cookie import sys from urllib import unquote diff -r 611aa2074a5b -r a166b51d13f8 web/test/unittest_views_basecontrollers.py --- a/web/test/unittest_views_basecontrollers.py Fri Jan 21 14:14:30 2011 +0100 +++ b/web/test/unittest_views_basecontrollers.py Fri Jan 21 16:38:13 2011 +0100 @@ -17,6 +17,8 @@ # with CubicWeb. If not, see . """cubicweb.web.views.basecontrollers unit tests""" +from __future__ import with_statement + from logilab.common.testlib import unittest_main, mock_object from cubicweb import Binary, NoSelectableObject, ValidationError