Skip to content

Commit

Permalink
Rename TestTags so it doesn't get confused for a test
Browse files Browse the repository at this point in the history
  • Loading branch information
MyreMylar committed Dec 30, 2024
1 parent a8c2997 commit e2d1baf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_utils/test_machinery.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def getTestCaseNames(self, testCaseClass):
TAGS_RE = re.compile(r"\|[tT]ags:(-?[ a-zA-Z,0-9_\n]+)\|", re.M)


class TestTags:
class TheTestTags:
def __init__(self):
self.memoized = {}
self.parent_modules = {}
Expand Down Expand Up @@ -86,4 +86,4 @@ def __call__(self, parent_class, meth):
return self.memoized[key]


get_tags = TestTags()
get_tags = TheTestTags()

0 comments on commit e2d1baf

Please sign in to comment.