From 86429057ec0efae0d1913b7810c3e4c33323808f Mon Sep 17 00:00:00 2001 From: Propaganistas Date: Thu, 6 Apr 2023 08:27:35 +0200 Subject: [PATCH] styleci --- tests/CastsTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CastsTest.php b/tests/CastsTest.php index 7410575..b0061fb 100644 --- a/tests/CastsTest.php +++ b/tests/CastsTest.php @@ -35,7 +35,7 @@ public function test_purifies_on_get_with_custom_config() $this->assertEquals($this->testInput, $model->getAttributes()['body']); $this->assertEquals('

Testbar

', $model->body); } - + public function test_returns_null_on_get_when_value_is_null() { $model = new PurifyingDefaultOnGetModel(); @@ -67,7 +67,7 @@ public function test_purifies_on_set_with_custom_config() $this->assertEquals('

Testbar

', $model->getAttributes()['body']); } - + public function test_sets_null_on_set_when_value_is_null() { $model = new PurifyingDefaultOnSetModel();