You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core-api/src/test/java/com/optimizely/ab/internal/ExperimentUtilsTest.java
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@ public void isUserInExperimentEvaluatesEvenIfExperimentHasAudiencesButUserHasNoA
142
142
"Evaluating audiences for experiment \"etag1\": \"[100]\"");
143
143
logbackVerifier.expectMessage(Level.DEBUG,
144
144
"Starting to evaluate audience not_firefox_users with conditions: \"[and, [or, [not, [or, {name='browser_type', type='custom_attribute', match='null', value='firefox'}]]]]\"");
145
-
logbackVerifier.expectMessage(Level.INFO,
145
+
logbackVerifier.expectMessage(Level.DEBUG,
146
146
"Audience not_firefox_users evaluated to true");
147
147
logbackVerifier.expectMessage(Level.INFO,
148
148
"Audiences for experiment etag1 collectively evaluated to true");
@@ -163,7 +163,7 @@ public void isUserInExperimentEvaluatesEvenIfExperimentHasAudiencesButUserSendNu
163
163
"Evaluating audiences for experiment \"etag1\": \"[100]\"");
164
164
logbackVerifier.expectMessage(Level.DEBUG,
165
165
"Starting to evaluate audience not_firefox_users with conditions: \"[and, [or, [not, [or, {name='browser_type', type='custom_attribute', match='null', value='firefox'}]]]]\"");
166
-
logbackVerifier.expectMessage(Level.INFO,
166
+
logbackVerifier.expectMessage(Level.DEBUG,
167
167
"Audience not_firefox_users evaluated to true");
168
168
logbackVerifier.expectMessage(Level.INFO,
169
169
"Audiences for experiment etag1 collectively evaluated to true");
@@ -184,7 +184,7 @@ public void isUserInExperimentEvaluatesExperimentHasTypedAudiences() {
184
184
"Evaluating audiences for experiment \"typed_audience_experiment\": \"[or, 3468206643, 3468206644, 3468206646, 3468206645]\"");
185
185
logbackVerifier.expectMessage(Level.DEBUG,
186
186
"Starting to evaluate audience BOOL with conditions: \"[and, [or, [or, {name='booleanKey', type='custom_attribute', match='exact', value=true}]]]\"");
187
-
logbackVerifier.expectMessage(Level.INFO,
187
+
logbackVerifier.expectMessage(Level.DEBUG,
188
188
"Audience BOOL evaluated to true");
189
189
logbackVerifier.expectMessage(Level.INFO,
190
190
"Audiences for experiment typed_audience_experiment collectively evaluated to true");
@@ -205,7 +205,7 @@ public void isUserInExperimentReturnsTrueIfUserSatisfiesAnAudience() {
205
205
"Evaluating audiences for experiment \"etag1\": \"[100]\"");
206
206
logbackVerifier.expectMessage(Level.DEBUG,
207
207
"Starting to evaluate audience not_firefox_users with conditions: \"[and, [or, [not, [or, {name='browser_type', type='custom_attribute', match='null', value='firefox'}]]]]\"");
208
-
logbackVerifier.expectMessage(Level.INFO,
208
+
logbackVerifier.expectMessage(Level.DEBUG,
209
209
"Audience not_firefox_users evaluated to true");
210
210
logbackVerifier.expectMessage(Level.INFO,
211
211
"Audiences for experiment etag1 collectively evaluated to true");
@@ -226,7 +226,7 @@ public void isUserInExperimentReturnsTrueIfUserDoesNotSatisfyAnyAudiences() {
226
226
"Evaluating audiences for experiment \"etag1\": \"[100]\"");
227
227
logbackVerifier.expectMessage(Level.DEBUG,
228
228
"Starting to evaluate audience not_firefox_users with conditions: \"[and, [or, [not, [or, {name='browser_type', type='custom_attribute', match='null', value='firefox'}]]]]\"");
229
-
logbackVerifier.expectMessage(Level.INFO,
229
+
logbackVerifier.expectMessage(Level.DEBUG,
230
230
"Audience not_firefox_users evaluated to false");
231
231
logbackVerifier.expectMessage(Level.INFO,
232
232
"Audiences for experiment etag1 collectively evaluated to false");
@@ -262,7 +262,7 @@ public void isUserInExperimentHandlesNullValueAttributesWithNull() {
262
262
"Starting to evaluate audience audience_with_missing_value with conditions: \"[and, [or, [or, {name='nationality', type='custom_attribute', match='null', value='English'}, {name='nationality', type='custom_attribute', match='null', value=null}]]]\"");
263
263
logbackVerifier.expectMessage(Level.WARN,
264
264
"Audience condition \"{name='nationality', type='custom_attribute', match='null', value=null}\" has an unexpected value type. You may need to upgrade to a newer release of the Optimizely SDK");
265
-
logbackVerifier.expectMessage(Level.INFO,
265
+
logbackVerifier.expectMessage(Level.DEBUG,
266
266
"Audience audience_with_missing_value evaluated to null");
267
267
logbackVerifier.expectMessage(Level.INFO,
268
268
"Audiences for experiment experiment_with_malformed_audience collectively evaluated to null");
@@ -283,7 +283,7 @@ public void isUserInExperimentHandlesNullConditionValue() {
283
283
"Starting to evaluate audience audience_with_missing_value with conditions: \"[and, [or, [or, {name='nationality', type='custom_attribute', match='null', value='English'}, {name='nationality', type='custom_attribute', match='null', value=null}]]]\"");
284
284
logbackVerifier.expectMessage(Level.WARN,
285
285
"Audience condition \"{name='nationality', type='custom_attribute', match='null', value=null}\" has an unexpected value type. You may need to upgrade to a newer release of the Optimizely SDK");
286
-
logbackVerifier.expectMessage(Level.INFO,
286
+
logbackVerifier.expectMessage(Level.DEBUG,
287
287
"Audience audience_with_missing_value evaluated to null");
288
288
logbackVerifier.expectMessage(Level.INFO,
289
289
"Audiences for experiment experiment_with_malformed_audience collectively evaluated to null");
0 commit comments