Skip to content

Commit b62d1dd

Browse files
committed
style: fix static code analysis
1 parent cf2a4cc commit b62d1dd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libs/processors/src/test/kotlin/org/wordpress/android/processor/FeaturesInDevelopmentDefaultsBuilderTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import org.junit.Test
55

66
class FeaturesInDevelopmentDefaultsBuilderTest {
77
@Test
8-
fun `given a list of features in development, when building the object, then generate list of features in development`() {
8+
fun `given a list of features in development, when building the object, then generate the correct list`() {
99
// given
1010
val featureA = "valueA"
1111
val featureB = "valueB"
@@ -35,7 +35,7 @@ class FeaturesInDevelopmentDefaultsBuilderTest {
3535
}
3636

3737
@Test
38-
fun `given an empty list of features in development, when building the object, then generate empty list of features in development`() {
38+
fun `given an empty list of features in development, when building the object, then generate empty list`() {
3939
// given
4040
val features = emptyList<String>()
4141

libs/processors/src/test/kotlin/org/wordpress/android/processor/RemoteFieldConfigDefaultsBuilderTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.wordpress.android.processor
22

3-
import org.junit.Assert.*
3+
import org.junit.Assert.assertEquals
44
import org.junit.Test
55

66
class RemoteFieldConfigDefaultsBuilderTest {

0 commit comments

Comments
 (0)