Skip to content

Commit 211f6c3

Browse files
minor comment fix
1 parent 11b51a6 commit 211f6c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/io/split/openfeature/SplitProviderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public void evalBooleanErrorTest() {
155155
when(mockSplitClient.getTreatment(eq(key), eq(flagName), anyMap())).thenReturn("a random string");
156156
try {
157157
splitProvider.getBooleanEvaluation(flagName, false, evaluationContext);
158-
fail("Should have thrown an exception casting string to integer");
158+
fail("Should have thrown an exception casting string to boolean");
159159
} catch (OpenFeatureError e) {
160160
assertEquals(ErrorCode.PARSE_ERROR, e.getErrorCode());
161161
} catch (Exception e) {

0 commit comments

Comments
 (0)