Applied StyleCI changes

This commit is contained in:
Dan Brown 2022-06-25 14:27:32 +01:00
parent 12c282597d
commit 107df6c28f
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -54,17 +54,17 @@ class BookTest extends TestCase
{ {
// Cheeky initial update to refresh slug // Cheeky initial update to refresh slug
$this->asEditor()->post('books', [ $this->asEditor()->post('books', [
'name' => 'My book with tags', 'name' => 'My book with tags',
'description' => 'A book with tags', 'description' => 'A book with tags',
'tags' => [ 'tags' => [
[ [
'name' => 'Category', 'name' => 'Category',
'value' => 'Donkey Content', 'value' => 'Donkey Content',
], ],
[ [
'name' => 'Level', 'name' => 'Level',
'value' => '5', 'value' => '5',
] ],
], ],
]); ]);
@ -113,13 +113,13 @@ class BookTest extends TestCase
'name' => $book->name, 'name' => $book->name,
'tags' => [ 'tags' => [
[ [
'name' => 'Category', 'name' => 'Category',
'value' => 'Dolphin Content', 'value' => 'Dolphin Content',
], ],
[ [
'name' => 'Level', 'name' => 'Level',
'value' => '5', 'value' => '5',
] ],
], ],
]); ]);