Skip to content

Commit 6664116

Browse files
committed
fix assert order
1 parent e0ad6b0 commit 6664116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/actions/workflows_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ func TestMatchIssuesEvent(t *testing.T) {
288288
expectedAction = string(tc.payload.Action)
289289
}
290290

291-
assert.Equal(t, tc.eventType, expectedAction, "Event type should match expected")
291+
assert.Equal(t, expectedAction, tc.eventType, "Event type should match expected")
292292
})
293293
}
294294
}

0 commit comments

Comments
 (0)