From 47b78dfb9f80656fdcf4640711f883fc9cdc0531 Mon Sep 17 00:00:00 2001 From: Tamara Gunkel Date: Thu, 21 Oct 2021 08:43:59 +0200 Subject: [PATCH] fix code style issues --- tests/opencast_repository_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/opencast_repository_test.php b/tests/opencast_repository_test.php index df66fd2..01dae1b 100644 --- a/tests/opencast_repository_test.php +++ b/tests/opencast_repository_test.php @@ -56,7 +56,7 @@ public function test_add_video_published_data() { $publications[0]->channel = 'api'; $video = $repository->phpu_adapter_test_listing($publications, $video); $this->assertEquals('h264-720p.mp4', $video->url); - $this->assertEquals('Test.mp4', $video->title,); + $this->assertEquals('Test.mp4', $video->title); $this->assertEquals('tn_presenter_search_preview_1.png', $video->thumbnail); // Test not valid thumbnail flavor. @@ -76,7 +76,7 @@ public function test_add_video_published_data() { $video = $repository->phpu_adapter_test_listing($publications, $video); $this->assertEquals('h264-720p.mp4', $video->url); - $this->assertEquals('Test.mp4', $video->title,); + $this->assertEquals('Test.mp4', $video->title); $this->assertEquals('tn_presentation_search_preview_1.png', $video->thumbnail); } }