From 9629184aefcba15e2d444252697ac1d5ccd048c8 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 23 Sep 2023 11:34:46 +0000 Subject: [PATCH] fix tests --- tests/Views/TicketViewTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Views/TicketViewTest.php b/tests/Views/TicketViewTest.php index 0480454..60b59ed 100755 --- a/tests/Views/TicketViewTest.php +++ b/tests/Views/TicketViewTest.php @@ -40,6 +40,6 @@ class TicketViewTest extends \PHPUnit\Framework\TestCase { $view = new TicketView(); - self::assertEquals('/Web/Backend/img/default-user.jpg', $view->getAccountImage(1)); + self::assertEquals('Web/Backend/img/default-user.jpg', $view->getAccountImage(1)); } }