Skip to content

Commit

Permalink
fix: remove length function call
Browse files Browse the repository at this point in the history
Signed-off-by: mikeee <[email protected]>
  • Loading branch information
mikeee committed Dec 7, 2023
1 parent 10408c1 commit 7c610dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dapr-bot/event_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func TestProcessEvent(t *testing.T) {
func TestGetIssueAssignees(t *testing.T) {
t.Run("get assignees", func(t *testing.T) {
assignees := testEvent.GetIssueAssignees()
assert.Len(t, len(assignees), 1)
assert.Len(t, assignees, 1)
assert.Equal(t, "testAssignee", assignees[0])
})
}
Expand Down

0 comments on commit 7c610dc

Please sign in to comment.