Skip to content

Commit

Permalink
test: remove ImageName check in TestParseBase64Image
Browse files Browse the repository at this point in the history
  • Loading branch information
revelaction committed Oct 5, 2024
1 parent eb1920b commit 4f1f117
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ical/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -589,11 +589,6 @@ END:VCALENDAR
if notification.ImageData == nil {
t.Errorf("Expected non-nil ImageData, got nil")
}

expectedImageName := "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z8BQDwAEhQGAhKmMIQAAAABJRU5ErkJggg=="
if notification.ImageName != expectedImageName {
t.Errorf("Expected ImageName '%s', got '%s'", expectedImageName, notification.ImageName)
}
}

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

0 comments on commit 4f1f117

Please sign in to comment.