Skip to content

Commit

Permalink
Fix instrumented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
etonotieno committed Sep 6, 2023
1 parent 0d3e157 commit 0d18b27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class AnimeDaoTest {
id = index,
imageUrl = "url:$index",
title = "Anime $index",
releaseYear = "Year $index",
releaseYear = index,
score = Random.nextDouble(0.0, 10.0),
episode = index,
rank = index,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class LocalAnimeTest {
id = 1,
imageUrl = "",
title = "",
releaseYear = "",
releaseYear = 0,
score = 0.0,
episode = 1,
rank = 1,
Expand All @@ -39,7 +39,7 @@ class LocalAnimeTest {
id = 1,
imageUrl = "",
title = "",
releaseYear = "",
releaseYear = 0,
score = 0.0,
episode = 1,
rank = 1,
Expand Down

0 comments on commit 0d18b27

Please sign in to comment.