Skip to content

Commit 8b9b722

Browse files
author
Varun Rathore
committed
fix build
1 parent 9661724 commit 8b9b722

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/test/java/com/google/firebase/remoteconfig/ParameterValueTest.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,9 @@ public void testEquality() {
133133
ParameterValue.ExperimentValue experimentValueFour =
134134
ParameterValue.ofExperiment("experiment_1", ImmutableList.of(
135135
ExperimentVariantValue.of("variant_2", "value_2")
136-
), 10.0);
136+
), 20.0);
137137
assertEquals(experimentValueOne, experimentValueTwo);
138138
assertNotEquals(experimentValueOne, experimentValueThree);
139139
assertNotEquals(experimentValueOne, experimentValueFour);
140-
141-
ParameterValue.ExperimentValue experimentValueFive =
142-
ParameterValue.ofExperiment("exp_1", ImmutableList.of(
143-
ExperimentVariantValue.of("variant_2", "value_2")
144-
), 20.0);
145-
assertNotEquals(experimentValueOne, experimentValueFive);
146140
}
147141
}

0 commit comments

Comments
 (0)