This commit is contained in:
Jeremy Benoist 2024-03-19 09:28:19 +01:00
parent 58243b7fcb
commit 6740020b7b
No known key found for this signature in database
GPG key ID: 7168D5DD29F38552
3 changed files with 7 additions and 7 deletions

View file

@ -72,10 +72,10 @@ class AppKernel extends Kernel
$loader->load(function ($container) {
if ($container->getParameter('use_webpack_dev_server')) {
$container->loadFromExtension('framework', [
'assets' => [
'base_url' => 'http://localhost:8080/',
],
]);
'assets' => [
'base_url' => 'http://localhost:8080/',
],
]);
} else {
$container->loadFromExtension('framework', [
'assets' => [

View file

@ -37,7 +37,7 @@ class Version20170719231144 extends WallabagMigration
WHERE LOWER(label) = :label
ORDER BY id ASC',
[
'label' => $label,
'label' => $label,
]
);

View file

@ -870,8 +870,8 @@ class EntryRestControllerTest extends WallabagApiTestCase
}
$this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
'origin_url' => null,
]);
'origin_url' => null,
]);
$this->assertSame(200, $this->client->getResponse()->getStatusCode());