Skip to content

Commit 433af6f

Browse files
lifeofguenterm1guelpf
authored andcommitted
fix spacing
1 parent 9da39d9 commit 433af6f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/Gitlab/Tests/Api/GroupsTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ public function shouldCreateGroupWithDescriptionAndVisibility()
127127

128128
$api = $this->getApiMock();
129129
$api->expects($this->once())
130-
->method('post')
131-
->with('groups', array('name' => 'A new group', 'path' => 'a-new-group', 'description' => 'Description', 'visibility' => 'public'))
132-
->will($this->returnValue($expectedArray))
130+
->method('post')
131+
->with('groups', array('name' => 'A new group', 'path' => 'a-new-group', 'description' => 'Description', 'visibility' => 'public'))
132+
->will($this->returnValue($expectedArray))
133133
;
134134

135135
$this->assertEquals($expectedArray, $api->create('A new group', 'a-new-group', 'Description', 'public'));
@@ -144,9 +144,9 @@ public function shouldCreateGroupWithDescriptionVisibilityAndParentId()
144144

145145
$api = $this->getApiMock();
146146
$api->expects($this->once())
147-
->method('post')
148-
->with('groups', array('name' => 'A new group', 'path' => 'a-new-group', 'description' => 'Description', 'visibility' => 'public', 'parent_id' => 666))
149-
->will($this->returnValue($expectedArray))
147+
->method('post')
148+
->with('groups', array('name' => 'A new group', 'path' => 'a-new-group', 'description' => 'Description', 'visibility' => 'public', 'parent_id' => 666))
149+
->will($this->returnValue($expectedArray))
150150
;
151151

152152
$this->assertEquals($expectedArray, $api->create('A new group', 'a-new-group', 'Description', 'public', null, null, 666));

0 commit comments

Comments
 (0)