Skip to content

Commit c09cf24

Browse files
Nick ZimmermannNick Zimmermann
Nick Zimmermann
authored and
Nick Zimmermann
committed
fix tests
1 parent c13c172 commit c09cf24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

providers/go-feature-flag/src/test/java/dev/openfeature/contrib/providers/gofeatureflag/GoFeatureFlagProviderTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ void should_throw_an_error_if_endpoint_not_available() {
238238
.value(false)
239239
.reason(Reason.ERROR.name())
240240
.errorCode(ErrorCode.GENERAL)
241-
.errorMessage("impossible to contact GO Feature Flag relay proxy instance")
241+
.errorMessage("unknown error while retrieving flag fail_500")
242242
.build();
243243
assertEquals(want, got);
244244
}
@@ -259,7 +259,7 @@ void should_throw_an_error_if_invalid_api_key() {
259259
.value(false)
260260
.reason(Reason.ERROR.name())
261261
.errorCode(ErrorCode.GENERAL)
262-
.errorMessage("invalid token used to contact GO Feature Flag relay proxy instance")
262+
.errorMessage("authentication/authorization error")
263263
.build();
264264
assertEquals(want, got);
265265
}

0 commit comments

Comments
 (0)