Loading app/build.gradle +3 −3 Original line number Diff line number Diff line Loading @@ -45,9 +45,9 @@ android { returnDefaultValues = true includeAndroidResources = true unitTests.all { systemProperty 'test.account.url', "\""+getTestProp("testServerUrl")+"\"" systemProperty 'test.account.username', "\""+getTestProp("testAccountName")+"\"" systemProperty 'test.account.password', "\""+getTestProp("testAccountPwd")+"\"" systemProperty 'test.account.url', getTestProp("testServerUrl") systemProperty 'test.account.username', getTestProp("testAccountName") systemProperty 'test.account.password', getTestProp("testAccountPwd") } } } Loading app/src/test/java/foundation/e/drive/TestUtils.java +1 −1 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ public abstract class TestUtils { */ public static void loadServerCredentials() { final Properties properties = System.getProperties(); TEST_ACCOUNT_PASSWORD = properties.getProperty("test.account.url"); TEST_ACCOUNT_PASSWORD = properties.getProperty("test.account.password"); TEST_ACCOUNT_NAME = properties.getProperty("test.account.username"); TEST_SERVER_URI = properties.getProperty("test.account.url"); } Loading Loading
app/build.gradle +3 −3 Original line number Diff line number Diff line Loading @@ -45,9 +45,9 @@ android { returnDefaultValues = true includeAndroidResources = true unitTests.all { systemProperty 'test.account.url', "\""+getTestProp("testServerUrl")+"\"" systemProperty 'test.account.username', "\""+getTestProp("testAccountName")+"\"" systemProperty 'test.account.password', "\""+getTestProp("testAccountPwd")+"\"" systemProperty 'test.account.url', getTestProp("testServerUrl") systemProperty 'test.account.username', getTestProp("testAccountName") systemProperty 'test.account.password', getTestProp("testAccountPwd") } } } Loading
app/src/test/java/foundation/e/drive/TestUtils.java +1 −1 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ public abstract class TestUtils { */ public static void loadServerCredentials() { final Properties properties = System.getProperties(); TEST_ACCOUNT_PASSWORD = properties.getProperty("test.account.url"); TEST_ACCOUNT_PASSWORD = properties.getProperty("test.account.password"); TEST_ACCOUNT_NAME = properties.getProperty("test.account.username"); TEST_SERVER_URI = properties.getProperty("test.account.url"); } Loading