Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 08bf3f92 authored by Mihai BOZ's avatar Mihai BOZ
Browse files

fix comments

parent eb786d94
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ public class LoginPage extends DomiSMPPage {
} catch (Exception e) {
LOG.debug("Password expiration popup is not present");
throw new RuntimeException(e);
throw new RuntimeException("Password expiration popup is not present", e);
}
......
......@@ -27,7 +27,9 @@ public class SmlPage extends DComponent {
for (WebElement element : dnsRecords) {
String elementRecords = element.getText();
return elementRecords.contains(dnsRecord);
if (elementRecords.contains(dnsRecord)) {
return true;
}
}
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment