Now receiving SQLSTATE[42000]: Syntax error or access violation: 1305 SAVEPOINT trans2 does not exist
public function test_update_opening_times()
{
$this->beginDatabaseTransaction();
$response = $this->put('/api/opening-times', [
'openingTimes' => [
[
'opening_time' => null,
'closing_time' => null,
],
]
]);
$response->assertStatus(Response::HTTP_NO_CONTENT);
}