Skip to content

Commit 0a4c311

Browse files
committed
reverts few changes
1 parent 9ad1b15 commit 0a4c311

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

auth0/src/test/java/com/auth0/android/authentication/storage/CredentialsManagerTest.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -721,6 +721,11 @@ public class CredentialsManagerTest {
721721
Assert.assertEquals(retrievedCredentials.accessToken, renewedCredentials.accessToken)
722722
}
723723

724+
@Test
725+
public fun shouldFailOnUserProfileWhenCredentialsIsNotSaved() {
726+
727+
}
728+
724729
@Test
725730
public fun shouldFailOnGetCredentialsWhenNoAccessTokenOrIdTokenWasSaved() {
726731
verifyNoMoreInteractions(client)

auth0/src/test/java/com/auth0/android/authentication/storage/SecureCredentialsManagerTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,10 @@ public class SecureCredentialsManagerTest {
174174
MatcherAssert.assertThat(manager, Is.`is`(Matchers.notNullValue()))
175175
}
176176

177+
@Test
178+
public fun shouldNotFailToRetrieveCredentials() {
179+
180+
}
177181

178182
/*
179183
* SAVE SSO credentials test

gradle/maven-publish.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ publishing {
5050
}
5151
}
5252

53+
scm {
54+
url = POM_SCM_URL
55+
connection = POM_SCM_CONNECTION
56+
developerConnection = POM_SCM_DEV_CONNECTION
57+
}
5358

5459
withXml {
5560
def dependenciesNode = asNode().appendNode('dependencies')
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<resources>
22
<string name="app_name">Auth0 SDK Sample</string>
3-
<string name="com_auth0_domain">int-dx-enterprise-test.us.auth0.com</string>
4-
<string name="com_auth0_client_id">GGUVoHL5nseaacSzqB810HWYGHZI34m8</string>
3+
<string name="com_auth0_domain">YOUR_DOMAIN</string>
4+
<string name="com_auth0_client_id">YOUR_CLIENT_ID</string>
55
<string name="com_auth0_scheme">demo</string>
66
</resources>

0 commit comments

Comments
 (0)