Skip to content

Commit

Permalink
remove unused grouping config
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie committed Oct 17, 2024
1 parent 6e4aeb0 commit f74cec2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sentry/grouping/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ def data(self):
with open(path.join(FINGERPRINT_INPUTS_DIR, self.filename)) as f:
return json.load(f)

def create_event(self, grouping_config=None):
def create_event(self):
config = FingerprintingRules.from_json(
{"rules": self.data.get("_fingerprinting_rules", [])},
)
mgr = EventManager(data=self.data, grouping_config=grouping_config)
mgr = EventManager(data=self.data)
mgr.normalize()
data = mgr.get_data()

Expand Down

0 comments on commit f74cec2

Please sign in to comment.