Skip to content

Commit

Permalink
Fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
nbradbury committed Sep 27, 2024
1 parent 16e28ae commit 1e1ba0e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import org.wordpress.android.ui.plugins.PluginUtilsWrapper
import org.wordpress.android.ui.themes.ThemeBrowserUtils
import org.wordpress.android.util.BuildConfigWrapper
import org.wordpress.android.util.SiteUtilsWrapper
import org.wordpress.android.util.config.SelfHostedUsersFeatureConfig
import org.wordpress.android.util.config.SiteMonitoringFeatureConfig

@RunWith(MockitoJUnitRunner::class)
Expand Down Expand Up @@ -57,6 +58,9 @@ class SiteListItemBuilderTest {
@Mock
lateinit var siteMonitoringFeatureConfig: SiteMonitoringFeatureConfig

@Mock
lateinit var selfHostedUsersFeatureConfig: SelfHostedUsersFeatureConfig

private lateinit var siteListItemBuilder: SiteListItemBuilder

@Before
Expand All @@ -68,7 +72,8 @@ class SiteListItemBuilderTest {
buildConfigWrapper,
themeBrowserUtils,
jetpackFeatureRemovalPhaseHelper,
siteMonitoringFeatureConfig
siteMonitoringFeatureConfig,
selfHostedUsersFeatureConfig
)
}

Expand Down

0 comments on commit 1e1ba0e

Please sign in to comment.