Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lindboe committed Sep 26, 2024
1 parent 9cacb26 commit 0beff0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boilerplate/app/models/Episode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ const episode = EpisodeModel.create(data)
test("publish date format", () => {
expect(episode.datePublished.textLabel).toBe("Jan 20, 2022")
expect(episode.datePublished.accessibilityLabel).toBe(
'demoPodcastListScreen:accessibility.publishLabel',
"demoPodcastListScreen:accessibility.publishLabel",
)
})

test("duration format", () => {
expect(episode.duration.textLabel).toBe("42:58")
expect(episode.duration.accessibilityLabel).toBe(
'demoPodcastListScreen:accessibility.durationLabel',
"demoPodcastListScreen:accessibility.durationLabel",
)
})

Expand Down

0 comments on commit 0beff0d

Please sign in to comment.