Fix kotlin object call

Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
alperozturk 2023-11-08 15:17:12 +01:00 committed by Alper Öztürk
parent a2d002a2fc
commit 36e02b14c1
1 changed files with 7 additions and 7 deletions

View File

@ -38,7 +38,7 @@ public class AuthenticatorUrlUtilsTest {
// 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 class AuthenticatorUrlUtilsTest {
// WHEN
// scheme is normalized
String normalized = AuthenticatorUrlUtils.normalizeScheme(url);
String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url);
// THEN
// output is equal
@ -70,7 +70,7 @@ public class AuthenticatorUrlUtilsTest {
// 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 class AuthenticatorUrlUtilsTest {
// WHEN
// scheme is normalized
String normalized = AuthenticatorUrlUtils.normalizeScheme(emptyUrl);
String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(emptyUrl);
// THEN
// output is empty
@ -103,7 +103,7 @@ public class AuthenticatorUrlUtilsTest {
// WHEN
// scheme is normalized
String normalized = AuthenticatorUrlUtils.normalizeScheme(url);
String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url);
// THEN
// output is equal
@ -119,7 +119,7 @@ public class AuthenticatorUrlUtilsTest {
// WHEN
// scheme is normalized
String normalized = AuthenticatorUrlUtils.normalizeScheme(url);
String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url);
// THEN
// output is equal
@ -136,7 +136,7 @@ public class AuthenticatorUrlUtilsTest {
// WHEN
// scheme is normalized
String normalized = AuthenticatorUrlUtils.normalizeScheme(url);
String normalized = AuthenticatorUrlUtils.INSTANCE.normalizeScheme(url);
// THEN
// output is equal