Skip to content
Snippets Groups Projects
Commit 88ab51ec authored by Vincent Massol's avatar Vincent Massol
Browse files

[Misc] fix typs + reformat comment in pom.xml

parent 07926d89
No related branches found
No related tags found
No related merge requests found
......@@ -78,10 +78,11 @@
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!-- We currently need to depend on mail-ui in the test because it contains the Mail.SendMailConfigClass. We can not have
administration-ui depend on mail-ui, because mail-ui already depends on administration-ui which would create a loop. mail-ui
just needs the configurable class stuff from administration-ui, so when that gets refactored out, we can fix the dependency
directly in administration-ui and not have anything here specific to mail. -->
<!-- We currently need to depend on mail-ui in the test because it contains the Mail.SendMailConfigClass. We can
not have administration-ui depend on mail-ui, because mail-ui already depends on administration-ui which would
create a loop. mail-ui ust needs the configurable class stuff from administration-ui, so when that gets
refactored out, we can fix the dependency directly in administration-ui and not have anything here specific to
mail. -->
<dependency>
<groupId>org.xwiki.platform</groupId>
<artifactId>xwiki-platform-mail-ui</artifactId>
......
......@@ -71,7 +71,7 @@ public void verifyGlobalAndSpaceSections()
@Override
public void accept(String sectionId)
{
assertTrue(String.format("Section %s is missing.", sectionId),
assertTrue(String.format("Menu section [%s] is missing.", sectionId),
administrationPage.hasSection(sectionId));
}
});
......@@ -99,7 +99,7 @@ public void accept(String sectionId)
@Override
public void accept(String sectionId)
{
assertTrue(String.format("Section %s is present.", sectionId),
assertTrue(String.format("Menu section [%s] shouldn't be present.", sectionId),
administrationPage.hasNotSection(sectionId));
}
});
......
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