diff --git a/tests/php/Security/GroupTest.php b/tests/php/Security/GroupTest.php index ea8d32881..ae4f8f34e 100644 --- a/tests/php/Security/GroupTest.php +++ b/tests/php/Security/GroupTest.php @@ -305,6 +305,11 @@ class GroupTest extends FunctionalTest $newGroup->Title = 'Title'; $result = $newGroup->validate(); $this->assertTrue($result->isValid()); + + // Title can be empty to avoid breaking backwards-compatibility. + $newGroup->Title = ''; + $result = $newGroup->validate(); + $this->assertTrue($result->isValid()); } public function testGroupTitleDuplication()