Skip to content

Commit a49c32d

Browse files
committed
Update get transcode results test
1 parent 01a79e9 commit a49c32d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Feature/Requests/GetTranscodeResultsTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
$dolbyApi = new DolbyApi('my-api-token');
1414
$dolbyApi->withMockClient($mockClient);
1515

16-
$jobId = 'tr988637-9fb8-4023-32lt-1285r04627st';
16+
$jobId = 'tr988637-9fb8-4123-62lt-1485r04627st';
1717

1818
$response = $dolbyApi->send(new GetTranscodeResults($jobId));
1919

2020
$mockClient->assertSent(GetTranscodeResults::class);
2121

2222
$mockClient->assertSent(function (Request $request, Response $response) {
2323
return $request instanceof GetTranscodeResults
24-
&& $response->body() == '{"path":"/media/transcode","status":"Success","progress":100,"api_version":"b1.4","result":{}}';
24+
&& $response->body() == '{"path":"/media/transcode","status":"Success","progress":100,"api_version":"v1.7","result":{}}';
2525
});
2626

2727
expect($response)->toBeInstanceOf(DolbyResponse::class);

0 commit comments

Comments
 (0)