Skip to content

Commit 30c523c

Browse files
committed
bug: scope should be single value param in AuthenticationRequest (Nimbus)
1 parent f509c1c commit 30c523c

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/test/kotlin/no/nav/security/mock/oauth2/e2e/MockOAuth2ServerIntegrationTest.kt

-3
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ class MockOAuth2ServerIntegrationTest {
198198
endSessionEndpoint shouldStartWith url
199199
}
200200

201-
202201
@Language("json")
203202
private val configJson = """{
204203
"interactiveLogin" : true,
@@ -239,5 +238,3 @@ class MockOAuth2ServerIntegrationTest {
239238
}
240239
""".trimIndent()
241240
}
242-
243-

src/test/kotlin/no/nav/security/mock/oauth2/examples/openidconnect/ExampleAppWithOpenIdConnect.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class ExampleAppWithOpenIdConnect(oidcDiscoveryUrl: String) : AbstractExampleApp
7979
"response_type" to listOf("code"),
8080
"redirect_uri" to listOf(exampleApp.url("/callback").toString()),
8181
"response_mode" to listOf("query"),
82-
"scope" to listOf("openid", "scope1"),
82+
"scope" to listOf("openid scope1"),
8383
"state" to listOf("1234"),
8484
"nonce" to listOf("5678")
8585
)

0 commit comments

Comments
 (0)