# HG changeset patch # User Sylvain Thénault # Date 1297426989 -3600 # Node ID d1a279ece4a05d10a73e834d275b75e95a323eba # Parent a8fbcf9b65729ec0ee1d13d4aea8a82690cdca31 [test] missing future import diff -r a8fbcf9b6572 -r d1a279ece4a0 test/unittest_selectors.py --- a/test/unittest_selectors.py Fri Feb 11 11:37:10 2011 +0100 +++ b/test/unittest_selectors.py Fri Feb 11 13:23:09 2011 +0100 @@ -1,4 +1,4 @@ -# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. +# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr # # This file is part of CubicWeb. @@ -16,6 +16,7 @@ # You should have received a copy of the GNU Lesser General Public License along # with CubicWeb. If not, see . """unit tests for selectors mechanism""" +from __future__ import with_statement from operator import eq, lt, le, gt from logilab.common.testlib import TestCase, unittest_main