From 195366a8c71a773acf831ba845236a54c8bd264e Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 23 Sep 2023 12:50:40 +0000 Subject: [PATCH] fix tests --- tests/Views/TaskViewTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Views/TaskViewTest.php b/tests/Views/TaskViewTest.php index 129423e..fe1462b 100755 --- a/tests/Views/TaskViewTest.php +++ b/tests/Views/TaskViewTest.php @@ -40,6 +40,6 @@ class TaskViewTest extends \PHPUnit\Framework\TestCase { $view = new TaskView(); - self::assertEquals('/Web/Backend/img/default-user.jpg', $view->getAccountImage(1)); + self::assertEquals('Web/Backend/img/default-user.jpg', $view->getAccountImage(1)); } }