Skip to content

Commit

Permalink
Merge pull request #83 from apivideo/fix-php-tests-language
Browse files Browse the repository at this point in the history
fix(php) bad language in unit tests
  • Loading branch information
bot-api-video authored Dec 20, 2023
2 parents 3d608a9 + e4240ed commit bdce91f
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 bdce91f

Please sign in to comment.