From 895af792559e622c4c2d44cd8f54288749256cf9 Mon Sep 17 00:00:00 2001 From: EnesSacid-Buker <73346401+EnesSacid-Buker@users.noreply.github.com> Date: Thu, 1 Dec 2022 18:14:00 +0300 Subject: [PATCH] Made the flash value appear in the description. When the expected level did not match the incoming level. --- tests/Feature/FeatureTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/FeatureTestCase.php b/tests/Feature/FeatureTestCase.php index f431a7103..273199273 100644 --- a/tests/Feature/FeatureTestCase.php +++ b/tests/Feature/FeatureTestCase.php @@ -59,6 +59,6 @@ abstract class FeatureTestCase extends TestCase $flash = $flashMessage->first(); } - $this->assertEquals($excepted, $flash['level']); + $this->assertEquals($excepted, $flash['level'], json_encode($flash)); } }