Skip to content

Commit

Permalink
Space after "="
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjupta committed Nov 5, 2020
1 parent 0078c41 commit 92ec836
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class TextInputContainsRuleClassifierProviderTest {
fun testEmptyStringAnswer_emptyStringInput_answerContainsInput_bothValuesMatch() {
val inputs = mapOf("x" to STRING_VALUE_TEST_NULL)

val matches =
val matches =
inputContainsRuleClassifier.matches(answer =STRING_VALUE_TEST_ANSWER_NULL, inputs = inputs)

assertThat(matches).isTrue()
Expand Down Expand Up @@ -158,7 +158,7 @@ class TextInputContainsRuleClassifierProviderTest {
fun testEmptyStringAnswer_nonEmptyStringInput_answerDoesNotContainInput_valuesDoNotMatch() {
val inputs = mapOf("x" to STRING_VALUE_TEST_ANSWER)

val matches =
val matches =
inputContainsRuleClassifier.matches(answer =STRING_VALUE_TEST_ANSWER_NULL, inputs = inputs)

assertThat(matches).isFalse()
Expand Down

0 comments on commit 92ec836

Please sign in to comment.