Skip to content

Commit 159aa35

Browse files
committed
account/auth: don't use camelCase in identifier name.
No functional changes.
1 parent 893804f commit 159aa35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/webapp/WEB-INF/views/account/auth.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ <h3 th:text="#{t_authentication_on_site}">
123123
</div>
124124
/*/-->
125125

126-
<form id="authAccountForm" action="../site/index.html" th:action="@{${LOGIN_PAGE}}" method="post" class="form-horizontal">
126+
<form id="auth-account-form" action="../site/index.html" th:action="@{${LOGIN_PAGE}}" method="post" class="form-horizontal">
127127

128128
<div class="form-group">
129129
<label for="login" class="control-label col-sm-4">

src/test/java/ru/mystamps/web/tests/page/AuthAccountPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public AuthAccountPage(WebDriver driver) {
5555

5656
public boolean authenticationFormExists() {
5757
// TODO: probably better to check for form tag presence?
58-
return elementWithIdExists("authAccountForm");
58+
return elementWithIdExists("auth-account-form");
5959
}
6060

6161
public void authorizeUser(String login, String password) {

0 commit comments

Comments
 (0)