Skip to content

Commit

Permalink
Fix syntax error in PHP test.
Browse files Browse the repository at this point in the history
  • Loading branch information
codecop committed Jun 8, 2024
1 parent 4c7caae commit 76db62c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions php-simple/tests/PricesControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ public function doesSomething()
$response = $this->call('GET', '/prices/?type=1jour');

$response->assertOk();
$response->assertHeader('Content-Type', 'application/json')
->assertJson([ 'cost' => 35 ]);
);
$response->assertJson([ 'cost' => 35 ]);
}
}

0 comments on commit 76db62c

Please sign in to comment.