There was an error while loading. Please reload this page.
1 parent 599ab9e commit d94fbc4Copy full SHA for d94fbc4
1 file changed
integration-test/src/test/java/org/cloudfoundry/uaa/ClientsTest.java
@@ -121,6 +121,7 @@ public void batchCreate() {
121
.authorizedGrantType(PASSWORD)
122
.clientId(clientId1)
123
.clientSecret(clientSecret)
124
+ .allowPublic(true)
125
.scopes("client.read", "client.write")
126
.tokenSalt("test-token-salt")
127
.build())
@@ -145,6 +146,7 @@ public void batchCreate() {
145
146
assertThat(response.getScopes())
147
.containsExactly("client.read", "client.write");
148
assertThat(response.getTokenSalt()).isEqualTo("test-token-salt");
149
+ assertThat(response.getAllowPublic()).isTrue();
150
})
151
.expectComplete()
152
.verify(Duration.ofMinutes(5));
0 commit comments