Commit 94773c7 1 parent d89ed5e commit 94773c7 Copy full SHA for 94773c7
File tree 2 files changed +2
-4
lines changed
src/test/java/org/wordpress/android/fluxc/store
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,6 @@ android {
29
29
consumerProguardFiles ' consumer-rules.pro'
30
30
}
31
31
32
- lint {
33
- disable ' IgnoreWithoutReason'
34
- }
35
-
36
32
testOptions {
37
33
unitTests. includeAndroidResources = true
38
34
}
Original file line number Diff line number Diff line change @@ -172,6 +172,7 @@ class StatsStoreTest {
172
172
}
173
173
174
174
@Test @Ignore
175
+ @Suppress(" IgnoreWithoutReason" )
175
176
fun `insight types starts with news type and ends with control type when news card was not shown` () = test {
176
177
whenever(insightTypesSqlUtils.selectAddedItemsOrderedByStatus(site)).thenReturn(listOf (COMMENTS ))
177
178
whenever(sharedPreferences.getBoolean(INSIGHTS_MANAGEMENT_NEWS_CARD_SHOWN , false )).thenReturn(false )
@@ -185,6 +186,7 @@ class StatsStoreTest {
185
186
}
186
187
187
188
@Test @Ignore
189
+ @Suppress(" IgnoreWithoutReason" )
188
190
fun `insight types does not start with news type when news card was shown` () = test {
189
191
whenever(insightTypesSqlUtils.selectAddedItemsOrderedByStatus(site)).thenReturn(listOf (COMMENTS ))
190
192
whenever(sharedPreferences.getBoolean(INSIGHTS_MANAGEMENT_NEWS_CARD_SHOWN , false )).thenReturn(true )
You can’t perform that action at this time.
0 commit comments