diff --git a/app/src/test/java/com/owncloud/android/authentication/AuthenticatorUrlUtilsTest.java b/app/src/test/java/com/owncloud/android/authentication/AuthenticatorUrlUtilsTest.java index 998160bce758..bf9a58d5629d 100644 --- a/app/src/test/java/com/owncloud/android/authentication/AuthenticatorUrlUtilsTest.java +++ b/app/src/test/java/com/owncloud/android/authentication/AuthenticatorUrlUtilsTest.java @@ -38,7 +38,7 @@ public void noScheme() { // WHEN // scheme is normalized - String normalized = AuthenticatorUrlUtils.normalizeScheme(url); + String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url); // THEN // input is returned unchanged @@ -54,7 +54,7 @@ public void lowercaseScheme() { // WHEN // scheme is normalized - String normalized = AuthenticatorUrlUtils.normalizeScheme(url); + String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url); // THEN // output is equal @@ -70,7 +70,7 @@ public void uppercaseScheme() { // WHEN // scheme is normalized - String normalized = AuthenticatorUrlUtils.normalizeScheme(mixedCaseUrl); + String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(mixedCaseUrl); // THEN // scheme has been lower-cased @@ -87,7 +87,7 @@ public void emptyInput() { // WHEN // scheme is normalized - String normalized = AuthenticatorUrlUtils.normalizeScheme(emptyUrl); + String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(emptyUrl); // THEN // output is empty @@ -103,7 +103,7 @@ public void ipAddress() { // WHEN // scheme is normalized - String normalized = AuthenticatorUrlUtils.normalizeScheme(url); + String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url); // THEN // output is equal @@ -119,7 +119,7 @@ public void withPort() { // WHEN // scheme is normalized - String normalized = AuthenticatorUrlUtils.normalizeScheme(url); + String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url); // THEN // output is equal @@ -136,7 +136,7 @@ public void ipAddressWithPort() { // WHEN // scheme is normalized - String normalized = AuthenticatorUrlUtils.normalizeScheme(url); + String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url); // THEN // output is equal