Skip to content

Commit b82a039

Browse files
CopilotGrantBirki
andcommitted
Fix acceptance test handler to use string keys instead of symbols
Co-authored-by: GrantBirki <[email protected]>
1 parent e20fc81 commit b82a039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/acceptance/plugins/handlers/team1_handler.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def call(payload:, headers:, config:)
2525

2626
# Process the payload based on type
2727
if payload.is_a?(Hash)
28-
event_type = payload[:event_type] || "unknown"
28+
event_type = payload["event_type"] || "unknown"
2929

3030
case event_type
3131
when "deployment"

0 commit comments

Comments
 (0)