Fix new test and str version of PatternMatch

This commit is contained in:
mattie ruth backman
2025-11-05 14:44:58 -05:00
parent e9de9daf8c
commit ed808a9246

View File

@@ -62,7 +62,7 @@ class PatternMatch(Aggregation):
Returns:
A descriptive string showing the pattern type and content.
"""
return f"PatternMatch(type={self.type}, content={self.text}, full_match={self.full_match})"
return f"PatternMatch(type={self.type}, text={self.text}, full_match={self.full_match})"
class PatternPairAggregator(BaseTextAggregator):