1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 04:12:00 +02:00

Registry name improvements. testGetFieldNames() improvement.

This commit is contained in:
Cameron
2021-01-18 19:04:55 -08:00
parent 8f27be1150
commit 75aa014de1
3 changed files with 14 additions and 6 deletions

View File

@@ -720,7 +720,11 @@
);
$result = $this->ue->getFieldNames();
$this->assertSame($expected, $result);
foreach($expected as $field)
{
$this->assertContains($field, $result);
}
}
/*