Skip to content

Commit

Permalink
style: fix static code analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
wzieba committed Feb 20, 2024
1 parent cf2a4cc commit b62d1dd
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 @@ -5,7 +5,7 @@ import org.junit.Test

class FeaturesInDevelopmentDefaultsBuilderTest {
@Test
fun `given a list of features in development, when building the object, then generate list of features in development`() {
fun `given a list of features in development, when building the object, then generate the correct list`() {
// given
val featureA = "valueA"
val featureB = "valueB"
Expand Down Expand Up @@ -35,7 +35,7 @@ class FeaturesInDevelopmentDefaultsBuilderTest {
}

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.wordpress.android.processor

import org.junit.Assert.*
import org.junit.Assert.assertEquals
import org.junit.Test

class RemoteFieldConfigDefaultsBuilderTest {
Expand Down

0 comments on commit b62d1dd

Please sign in to comment.