File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
main/java/com/google/firebase/auth
test/java/com/google/firebase/auth Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -939,7 +939,7 @@ protected String execute() throws FirebaseAuthException {
939
939
}
940
940
941
941
/**
942
- * Creates a new provider OIDC Auth provider config with the attributes contained in the specified
942
+ * Creates a new OIDC Auth provider config with the attributes contained in the specified
943
943
* {@link OidcProviderConfig.CreateRequest}.
944
944
*
945
945
* @param request A non-null {@link OidcProviderConfig.CreateRequest} instance.
@@ -1196,7 +1196,7 @@ protected Void execute() throws FirebaseAuthException {
1196
1196
}
1197
1197
1198
1198
/**
1199
- * Creates a new provider SAML Auth provider config with the attributes contained in the specified
1199
+ * Creates a new SAML Auth provider config with the attributes contained in the specified
1200
1200
* {@link SamlProviderConfig.CreateRequest}.
1201
1201
*
1202
1202
* @param request A non-null {@link SamlProviderConfig.CreateRequest} instance.
Original file line number Diff line number Diff line change @@ -52,23 +52,23 @@ public void testJsonDeserialization() throws IOException {
52
52
}
53
53
54
54
@ Test
55
- public void testCheckSamlProviderId () {
56
- SamlProviderConfig . checkSamlProviderId ( "saml .valid-id" );
55
+ public void testCheckOidcProviderId () {
56
+ OidcProviderConfig . checkOidcProviderId ( "oidc .valid-id" );
57
57
}
58
58
59
59
@ Test (expected = IllegalArgumentException .class )
60
- public void testCreateSamlProviderIdNull () {
61
- SamlProviderConfig . checkSamlProviderId (null );
60
+ public void testCreateOidcProviderIdNull () {
61
+ OidcProviderConfig . checkOidcProviderId (null );
62
62
}
63
63
64
64
@ Test (expected = IllegalArgumentException .class )
65
- public void testCreateSamlProviderIdEmpty () {
66
- SamlProviderConfig . checkSamlProviderId ("" );
65
+ public void testCreateOidcProviderIdEmpty () {
66
+ OidcProviderConfig . checkOidcProviderId ("" );
67
67
}
68
68
69
69
@ Test (expected = IllegalArgumentException .class )
70
- public void testCreateSamlProviderIdInvalidPrefix () {
71
- SamlProviderConfig . checkSamlProviderId ("not prefixed with saml ." );
70
+ public void testCreateOidcProviderIdInvalidPrefix () {
71
+ OidcProviderConfig . checkOidcProviderId ("not prefixed with oidc ." );
72
72
}
73
73
74
74
@ Test
You can’t perform that action at this time.
0 commit comments