# HG changeset patch
# User Nsukami Patrick <ndkpatt at gmail dot com>
# Date 1551803760 0
#      Tue Mar 05 16:36:00 2019 +0000
# Node ID e0db60ed0b576e896b2cd6b4389d99a1e5be53cf
# Parent  c39883837801876c30bafd9e47441fe22b6af26e
Test: drop use of 'tag' decorator

diff --git a/test/unittest_views.py b/test/unittest_views.py
--- a/test/unittest_views.py
+++ b/test/unittest_views.py
@@ -1,5 +1,4 @@
 import unittest
-from logilab.common.testlib import tag
 
 from cubicweb.devtools.testlib import CubicWebTC
 from cubicweb.devtools.htmlparser import XMLValidator
@@ -7,12 +6,10 @@
 
 class BoostrapTheMainTemplateTC(CubicWebTC):
 
-    @tag('index')
     def test_valid_xhtml_index(self):
         with self.admin_access.web_request() as req:
             self.view('index', req=req)
 
-    @tag('error')
     def test_valid_xhtml_error(self):
         valid = self.content_type_validators.get('text/html', XMLValidator)()
         with self.admin_access.web_request() as req: