KEYCLOAK-74 fix of a typo and css color issue

This commit is contained in:
vrockai 2013-10-14 10:57:19 +02:00
parent 23f2fb9125
commit a67cff916d
2 changed files with 2 additions and 2 deletions

View file

@ -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">

View file

@ -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());
}