Skip to content

Commit

Permalink
fix Media/Delete endpoint tests
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarsn authored Jan 15, 2025
1 parent e5dd08b commit e4fb20e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Endpoints/Media/DeleteTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ class DeleteTest extends TestCase
{
public function test_with_single_id(): void
{
$this->makeBasicAuthEndpointTest(new Delete(123), [], ['id' => [123]]);
$this->makeBasicAuthEndpointTest(new Delete(123), ['id' => [123]]);
}

public function test_it_accepts_multiple_ids(): void
{
$this->makeBasicAuthEndpointTest(new Delete([123, 456]), [], ['id' => [123, 456]]);
$this->makeBasicAuthEndpointTest(new Delete([123, 456]), ['id' => [123, 456]]);
}
}

0 comments on commit e4fb20e

Please sign in to comment.