# HG changeset patch # User Denis Laxalde # Date 1472212619 -7200 # Node ID ae58ba20418cb1069239e38ab0d29d3f46af2a9b # Parent c7296e06e74e478d0c2fc01adb858eeb4e9369fd [test] Use plain unittest in unittest_toolsutils diff -r c7296e06e74e -r ae58ba20418c cubicweb/test/unittest_toolsutils.py --- a/cubicweb/test/unittest_toolsutils.py Mon May 30 21:35:50 2016 +0200 +++ b/cubicweb/test/unittest_toolsutils.py Fri Aug 26 13:56:59 2016 +0200 @@ -17,12 +17,12 @@ # with CubicWeb. If not, see . -from logilab.common.testlib import TestCase, unittest_main +import unittest from cubicweb.toolsutils import RQLExecuteMatcher -class RQLExecuteMatcherTests(TestCase): +class RQLExecuteMatcherTests(unittest.TestCase): def matched_query(self, text): match = RQLExecuteMatcher.match(text) if match is None: @@ -54,4 +54,4 @@ if __name__ == '__main__': - unittest_main() + unittest.main()