From 869346f7cef8f7a4c6442da3823d196f8e2468b4 Mon Sep 17 00:00:00 2001 From: Bayu Hendra Winata Date: Thu, 10 Sep 2020 17:42:19 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/AvatarPhpTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AvatarPhpTest.php b/tests/AvatarPhpTest.php index 10eb685..1837e09 100644 --- a/tests/AvatarPhpTest.php +++ b/tests/AvatarPhpTest.php @@ -23,7 +23,7 @@ public function it_can_override_attributes_when_instantiated() $avatar = new \Laravolt\Avatar\Avatar($config); $this->assertEquals(2, $avatar->getAttribute('chars')); - $this->assertEquals('circle',$avatar->getAttribute('shape')); + $this->assertEquals('circle', $avatar->getAttribute('shape')); $this->assertEquals(200, $avatar->getAttribute('width')); $this->assertEquals(200, $avatar->getAttribute('height')); $this->assertEquals(['#000000'], $avatar->getAttribute('availableBackgrounds'));