Skip to content

Commit 9661724

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

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,14 @@ public void testEquality() {
134134
ParameterValue.ofExperiment("experiment_1", ImmutableList.of(
135135
ExperimentVariantValue.of("variant_2", "value_2")
136136
), 10.0);
137+
assertEquals(experimentValueOne, experimentValueTwo);
138+
assertNotEquals(experimentValueOne, experimentValueThree);
139+
assertNotEquals(experimentValueOne, experimentValueFour);
140+
137141
ParameterValue.ExperimentValue experimentValueFive =
138142
ParameterValue.ofExperiment("exp_1", ImmutableList.of(
139143
ExperimentVariantValue.of("variant_2", "value_2")
140144
), 20.0);
141-
assertEquals(experimentValueOne, experimentValueTwo);
142-
assertNotEquals(experimentValueOne, experimentValueThree);
143-
assertNotEquals(experimentValueOne, experimentValueFour);
144145
assertNotEquals(experimentValueOne, experimentValueFive);
145146
}
146147
}

0 commit comments

Comments
 (0)