Skip to content

Commit

Permalink
Remove reliance on base class (unneeded).
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jun 9, 2022
1 parent 5c5f664 commit a5bd396
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cssutils/tests/test_tokenize2.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@

import pytest

from . import basetest
import cssutils.tokenize2 as tokenize2
from cssutils.tokenize2 import Tokenizer


class TestTokenizer(basetest.BaseTestCase):
class TestTokenizer:

testsall = {
# IDENT
Expand Down Expand Up @@ -570,7 +569,7 @@ def test_tokenizefullsheet(self):
assert len(tokens) - 1 == len(tests[css])


class TestTokenizerUtils(basetest.BaseTestCase):
class TestTokenizerUtils:
"""Tests for the util functions of tokenize"""

has_at_cases = [
Expand Down

0 comments on commit a5bd396

Please sign in to comment.