Skip to content

Commit d2cf467

Browse files
authored
Merge pull request #210 from OndrejKotek/wf35
Updates for WF 35 / console 3.7.5
2 parents cc0cd74 + dac2fdf commit d2cf467

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

tests-configuration-elytron/src/test/java/org/jboss/hal/testsuite/test/configuration/elytron/LdapRealmTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public void create() throws Exception {
177177
crud.create(ldapRealmAddress(LDAP_RLM_CREATE), table, f -> {
178178
f.text(NAME, LDAP_RLM_CREATE);
179179
f.text(DIR_CONTEXT, DIR_UPDATE);
180-
f.text(RDN_IDENTIFIER, ANY_STRING);
180+
f.text(IDENTITY_MAPPING + RDN_IDENTIFIER, ANY_STRING);
181181
});
182182
}
183183

@@ -187,7 +187,7 @@ public void tryCreate() throws Exception {
187187
TableFragment table = page.getLdapRealmTable();
188188
crud.createWithErrorAndCancelDialog(table, f -> {
189189
f.text(NAME, LDAP_RLM_CREATE);
190-
f.text(RDN_IDENTIFIER, ANY_STRING);
190+
f.text(IDENTITY_MAPPING + RDN_IDENTIFIER, ANY_STRING);
191191
}, DIR_CONTEXT);
192192
}
193193

tests-configuration-elytron/src/test/java/org/jboss/hal/testsuite/test/configuration/elytron/factoriestransformers/AbstractFactoriesTransformersTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ public static void beforeTests() throws Exception {
8383
ModelNode MECH_CONF_DELETE_MODEL = new ModelNode();
8484

8585
FILTER_CREATE_MODEL.get(PATTERN_FILTER).set(FILTERS_CREATE);
86-
FILTER_CREATE_MODEL.get(ENABLING).set(true);
8786
FILTER_UPDATE_MODEL.get(PATTERN_FILTER).set(FILTERS_UPDATE);
8887
FILTER_UPDATE_MODEL.get(ENABLING).set(true);
8988
FILTER_UPDATE2_MODEL.get(PATTERN_FILTER).set(FILTERS_UPDATE2);

tests-configuration-elytron/src/test/java/org/jboss/hal/testsuite/test/configuration/elytron/other/settings/SslSettingsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ public void securityDomainRealmsTryCreate() {
371371
waitGui().until().element(table.getRoot()).is().visible();
372372

373373
try {
374-
crud.createWithErrorAndCancelDialog(table, f -> f.text("role-decoder", ANY_STRING), REALM);
374+
crud.createWithErrorAndCancelDialog(table, f -> f.text(REALM, ""), REALM);
375375
} finally {
376376
// getting rid of action selection
377377
page.getSecurityDomainPages().breadcrumb().getBackToMainPage();

tests-hal-basic/src/test/java/org/jboss/hal/testsuite/test/HomePageTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void setUp() {
5050
public void topLevelCategories() {
5151
HeaderFragment header = console.header();
5252
List<WebElement> topLevelCategories = header.getTopLevelCategories();
53-
assertEquals(6, topLevelCategories.size());
53+
assertEquals(5, topLevelCategories.size());
5454
assertEquals(Ids.TLC_HOMEPAGE, header.getSelectedTopLevelCategory().getAttribute("id"));
5555

5656
assertTrue(containsTopLevelCategory(topLevelCategories, Ids.TLC_HOMEPAGE));

0 commit comments

Comments
 (0)