Skip to content

Commit dafaf0c

Browse files
authored
Merge pull request #544 from weaviate/test/skip_client_credentials
test(oidc): fix assumption for client credentials test
2 parents 4d02bc7 + 26bee57 commit dafaf0c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/it/java/io/weaviate/integration/OIDCSupportITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public void test_resourceOwnerPassword() throws Exception {
104104

105105
@Test
106106
public void test_clientCredentials() throws Exception {
107-
Assume.assumeTrue("OKTA_CLIENT_SECRET is not set", OKTA_CLIENT_SECRET != null && OKTA_CLIENT_SECRET.isBlank());
107+
Assume.assumeTrue("OKTA_CLIENT_SECRET is not set", OKTA_CLIENT_SECRET != null && !OKTA_CLIENT_SECRET.isBlank());
108108
Assume.assumeTrue("no internet connection", hasInternetConnection());
109109

110110
// Check norwal client credentials flow works.

0 commit comments

Comments
 (0)