Skip to content

Commit

Permalink
fix code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamara Gunkel committed Oct 21, 2021
1 parent 593cb3a commit 47b78df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/opencast_repository_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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);
}
}

0 comments on commit 47b78df

Please sign in to comment.