KEYCLOAK-8190 Fix compilation errors in Node.js adapter UI tests
This commit is contained in:
parent
d4a5c81034
commit
00da3e3669
1 changed files with 2 additions and 2 deletions
|
@ -50,11 +50,11 @@ public class NodejsExamplePage extends AbstractNodejsExamplePage {
|
|||
|
||||
public boolean isOnLoginSecuredPage() {
|
||||
UriBuilder uriBuilder = createUriBuilder().path("login");
|
||||
return URLUtils.currentUrlEqual(uriBuilder.build().toASCIIString());
|
||||
return URLUtils.currentUrlEquals(uriBuilder.build().toASCIIString());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCurrent() {
|
||||
return URLUtils.currentUrlStartWith(toString());
|
||||
return URLUtils.currentUrlStartsWith(toString());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue