Skip to content

Commit

Permalink
fix(test): call GetActionValue() instead of GetValue()
Browse files Browse the repository at this point in the history
  • Loading branch information
vareversat committed Jul 4, 2024
1 parent 22105d5 commit 4f3a75d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/components/alarm_calendar_component_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func TestNewAlarmCalendarComponent(t *testing.T) {
component := NewAlarmCalendarComponent(action, trigger)

assert.NotNil(t, component)
assert.Equal(t, action.GetValue(), types.AUDIO)
assert.Equal(t, action.GetActionValue(), types.AUDIO)
}

func TestAlarmCalendarComponent_SerializeToICSFormat(t *testing.T) {
Expand Down

0 comments on commit 4f3a75d

Please sign in to comment.