Skip to content

Commit

Permalink
Merge pull request #3276 from pygame-community/rename-test-tags
Browse files Browse the repository at this point in the history
Rename TestTags so it doesn't get confused for a test
  • Loading branch information
ankith26 authored Dec 30, 2024
2 parents be903f9 + e2d1baf commit 1b89e60
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 1b89e60

Please sign in to comment.