diff --git a/WordPress/src/test/java/org/wordpress/android/ui/posts/FeaturedImageHelperTest.kt b/WordPress/src/test/java/org/wordpress/android/ui/posts/FeaturedImageHelperTest.kt index 0e1c5eaaccf1..9379846e44d9 100644 --- a/WordPress/src/test/java/org/wordpress/android/ui/posts/FeaturedImageHelperTest.kt +++ b/WordPress/src/test/java/org/wordpress/android/ui/posts/FeaturedImageHelperTest.kt @@ -318,12 +318,13 @@ class FeaturedImageHelperTest { eq("https://testing.com/url.jpg"), anyInt(), anyInt(), + anyBoolean(), anyBoolean() ) } @Test - fun `createCurrent-State returns uses thumbnailUrl is not empty`() { + fun `createCurrent-State uses thumbnailUrl if it is not empty`() { // Arrange val post: PostImmutableModel = mock() whenever(post.hasFeaturedImage()).thenReturn(true) @@ -343,6 +344,7 @@ class FeaturedImageHelperTest { "https://testing.com/thumbnail.jpg"), anyInt(), anyInt(), + anyBoolean(), anyBoolean() ) }