We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e36e07 commit 5ba5420Copy full SHA for 5ba5420
core-api/src/test/java/com/optimizely/ab/OptimizelyBuilderTest.java
@@ -180,6 +180,7 @@ public void builderThrowsConfigParseExceptionForEmptyDatafile() throws Exception
180
@Test
181
public void builderThrowsConfigParseExceptionForInvalidDatafile() throws Exception {
182
thrown.expect(ConfigParseException.class);
183
- Optimizely.builder("{invalidDatafile}", mockEventHandler).build();
+ String invalidJson = "{invalidDatafile}";
184
+ Optimizely.builder(invalidJson, mockEventHandler).build();
185
}
186
0 commit comments