order user roles and permissions (#1372)

This commit is contained in:
Kevin Papst
2020-01-16 16:54:42 +01:00
committed by GitHub
parent 6a44dbfe83
commit fed797df93
6 changed files with 205 additions and 20 deletions

View File

@@ -197,7 +197,7 @@ abstract class ControllerBaseTest extends WebTestCase
*/
protected function assertDataTableRowCount(Client $client, string $id, int $count)
{
$node = $client->getCrawler()->filter('section.content div#' . $id . ' table.table-striped tbody tr');
$node = $client->getCrawler()->filter('section.content div#' . $id . ' table.table-striped tbody tr:not(.summary)');
self::assertEquals($count, $node->count());
}