Skip to content

Commit 507f63c

Browse files
committed
feat(legacy-create-video): [golden-master] 100% coverage
1 parent 0fcd124 commit 507f63c

File tree

1 file changed

+2
-2
lines changed
  • exercises/legacy_create_video/solutions/codely_php-symfony_golden-master/src/AppBundle/Tests/Controller

1 file changed

+2
-2
lines changed

exercises/legacy_create_video/solutions/codely_php-symfony_golden-master/src/AppBundle/Tests/Controller/VideoControllerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ public function testPostVideo()
2020
$client = $this->getClient(true);
2121

2222
$client->request('POST', '/videos.json', [
23-
'title' => 'Testing en frontend',
23+
'title' => 'Arquitectura hexagonal, solid y tdd',
2424
'url' => 'https://pro.codely.tv/library/testing-frontend',
2525
'course_id' => 5
2626
]);
2727
$response = $client->getResponse();
2828

2929
$this->assertJsonResponse($response);
3030
$expectedId = "1";
31-
$expectedTitle = "Testing en frontend";
31+
$expectedTitle = "Arquitectura Hexagonal, SOLID y TDD";
3232
$expectedUrl = "https://pro.codely.tv/library/testing-frontend";
3333
$expectedCourseId = 5;
3434
$expectedResponse = [

0 commit comments

Comments
 (0)