From 666411692b96a96075f3b0d05b6c3d0065b9b712 Mon Sep 17 00:00:00 2001 From: Sumit Paul Date: Tue, 29 Apr 2025 23:41:34 +0530 Subject: [PATCH] fix assert order --- modules/actions/workflows_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/actions/workflows_test.go b/modules/actions/workflows_test.go index a7eec1dee2..8864dbb9b2 100644 --- a/modules/actions/workflows_test.go +++ b/modules/actions/workflows_test.go @@ -288,7 +288,7 @@ func TestMatchIssuesEvent(t *testing.T) { expectedAction = string(tc.payload.Action) } - assert.Equal(t, tc.eventType, expectedAction, "Event type should match expected") + assert.Equal(t, expectedAction, tc.eventType, "Event type should match expected") }) } }