File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/integrationTest/java/org/opensearch Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public class OnBehalfOfJwtAuthenticationTest {
7979 )
8080 )
8181 .authc (AUTHC_HTTPBASIC_INTERNAL )
82- .onBehalfOf (new OnBehalfOfConfig ().oboEnabled (oboEnabled ).signing_key (signingKey ).encryption_key (encryptionKey ))
82+ .onBehalfOf (new OnBehalfOfConfig ().oboEnabled (oboEnabled ).signingKey (signingKey ).encryptionKey (encryptionKey ))
8383 .build ();
8484
8585 @ Test
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ public OnBehalfOfConfig oboEnabled(Boolean oboEnabled) {
2727 return this ;
2828 }
2929
30- public OnBehalfOfConfig signing_key (String signing_key ) {
30+ public OnBehalfOfConfig signingKey (String signing_key ) {
3131 this .signing_key = signing_key ;
3232 return this ;
3333 }
3434
35- public OnBehalfOfConfig encryption_key (String encryption_key ) {
35+ public OnBehalfOfConfig encryptionKey (String encryption_key ) {
3636 this .encryption_key = encryption_key ;
3737 return this ;
3838 }
You can’t perform that action at this time.
0 commit comments