KEYCLOAK-74 fix of a typo and css color issue
This commit is contained in:
parent
23f2fb9125
commit
a67cff916d
2 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@
|
|||
<!-- <p>Forgot <a href="#">Username</a> or <a href="#">Password</a>?</p> -->
|
||||
</div>
|
||||
|
||||
<input type="submit" value="Log In" />
|
||||
<input class="btn-primary" type="submit" value="Log In" />
|
||||
</form>
|
||||
|
||||
<#elseif section = "info">
|
||||
|
|
|
@ -35,7 +35,7 @@ public abstract class Page {
|
|||
|
||||
public void assertCurrent() {
|
||||
String name = getClass().getSimpleName();
|
||||
Assert.assertTrue("Exptected " + name + " but was " + driver.getTitle() + " (" + driver.getCurrentUrl() + ")",
|
||||
Assert.assertTrue("Expected " + name + " but was " + driver.getTitle() + " (" + driver.getCurrentUrl() + ")",
|
||||
isCurrent());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue