Skip to content

Commit

Permalink
fix(php) bad language in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierapivideo authored Dec 20, 2023
1 parent 3d608a9 commit e4240ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Api/CaptionsApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function testList()
{
$video = (new Helper($this->client))->createVideo();

foreach (['fr', 'ch', 'en', 'de', 'es'] as $language) {
foreach (['fr', 'ja', 'en', 'de', 'es'] as $language) {
$this->client->captions()->upload(
$video->getVideoId(),
$language,
Expand Down
2 changes: 1 addition & 1 deletion tests/Api/ChaptersApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function testList()
{
$video = (new Helper($this->client))->createVideo();

foreach (['fr', 'ch', 'en', 'de', 'es'] as $language) {
foreach (['fr', 'ja', 'en', 'de', 'es'] as $language) {
$this->client->chapters()->upload(
$video->getVideoId(),
$language,
Expand Down

0 comments on commit e4240ed

Please sign in to comment.