Skip to content

Commit b9b6c07

Browse files
committed
fix OpenAI fixture path
1 parent 15cd02a commit b9b6c07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Integrations/OpenAI/Latest/OpenAITest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ public function testStreamedResponseUsability()
434434
$this->assertNotNull($responseIterator);
435435
$this->assertIsIterable($responseIterator);
436436

437-
$expectedContent = file_get_contents(__DIR__ . '/../../OpenAI/Fixtures/Streams/CompletionCreate.txt');
437+
$expectedContent = file_get_contents(__DIR__ . '/../../../OpenAI/Fixtures/Streams/CompletionCreate.txt');
438438
$lines = explode("\n", $expectedContent);
439439
for ($i = 0; $i < 10; $i++) {
440440
$jsonContent = substr($lines[$i], 6); // 6 is the length of 'data: '

0 commit comments

Comments
 (0)