Skip to content

Commit 014223a

Browse files
Test fix
changed test to remove extra parameter check on with.
1 parent b8044a4 commit 014223a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/Unit/Api/Resources/CategoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function testDeletePassesThroughToConnection()
3131
$category = new Category((object)(array('id' => 1)));
3232
$this->connection->expects($this->once())
3333
->method('delete')
34-
->with($this->basePath . '/categories/1', $category->getUpdateFields());
34+
->with($this->basePath . '/categories/1');
3535

3636
$category->delete();
3737
}

0 commit comments

Comments
 (0)