We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15cd02a commit b9b6c07Copy full SHA for b9b6c07
tests/Integrations/OpenAI/Latest/OpenAITest.php
@@ -434,7 +434,7 @@ public function testStreamedResponseUsability()
434
$this->assertNotNull($responseIterator);
435
$this->assertIsIterable($responseIterator);
436
437
- $expectedContent = file_get_contents(__DIR__ . '/../../OpenAI/Fixtures/Streams/CompletionCreate.txt');
+ $expectedContent = file_get_contents(__DIR__ . '/../../../OpenAI/Fixtures/Streams/CompletionCreate.txt');
438
$lines = explode("\n", $expectedContent);
439
for ($i = 0; $i < 10; $i++) {
440
$jsonContent = substr($lines[$i], 6); // 6 is the length of 'data: '
0 commit comments