Completed
Push — master ( e67f8e...cddd66 )
by
unknown
29:25
created
tests/lib/Group/DatabaseTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,9 +60,9 @@
 block discarded – undo
60 60
 
61 61
 	public function testWhiteSpaceInGroupName(): void {
62 62
 		$randomId = $this->getUniqueID('test_', 10);
63
-		$groupName = " 	group  name	with  	weird spaces \n" . $randomId;
64
-		$expectedGroupName = 'group name with weird spaces ' . $randomId;
65
-		$expectedGroupId = 'group_name_with_weird_spaces_' . $randomId;
63
+		$groupName = " 	group  name	with  	weird spaces \n".$randomId;
64
+		$expectedGroupName = 'group name with weird spaces '.$randomId;
65
+		$expectedGroupId = 'group_name_with_weird_spaces_'.$randomId;
66 66
 
67 67
 		$gidCreated = $this->backend->createGroup($groupName);
68 68
 		$this->assertEquals($expectedGroupId, $gidCreated);
Please login to merge, or discard this patch.