From 107df6c28f88f857946ad6751065334c264ada84 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Sat, 25 Jun 2022 14:27:32 +0100 Subject: [PATCH] Applied StyleCI changes --- tests/Entity/BookTest.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/Entity/BookTest.php b/tests/Entity/BookTest.php index 285769b73..6b3c6aa38 100644 --- a/tests/Entity/BookTest.php +++ b/tests/Entity/BookTest.php @@ -54,17 +54,17 @@ class BookTest extends TestCase { // Cheeky initial update to refresh slug $this->asEditor()->post('books', [ - 'name' => 'My book with tags', + 'name' => 'My book with tags', 'description' => 'A book with tags', - 'tags' => [ + 'tags' => [ [ - 'name' => 'Category', + 'name' => 'Category', 'value' => 'Donkey Content', ], [ - 'name' => 'Level', + 'name' => 'Level', 'value' => '5', - ] + ], ], ]); @@ -113,13 +113,13 @@ class BookTest extends TestCase 'name' => $book->name, 'tags' => [ [ - 'name' => 'Category', + 'name' => 'Category', 'value' => 'Dolphin Content', ], [ - 'name' => 'Level', + 'name' => 'Level', 'value' => '5', - ] + ], ], ]);