We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b8a7a6 commit 5e6d3b7Copy full SHA for 5e6d3b7
tests/Unit/Capability/RegistryTest.php
@@ -602,16 +602,13 @@ public function testExtractStructuredContentReturnsArrayDirectlyForArrayOutputSc
602
603
// Assert
604
$this->assertNotNull($structuredContent);
605
- $this->assertIsArray($structuredContent);
606
$this->assertCount(4, $structuredContent);
607
$this->assertEquals([
608
['foo' => 'bar'],
609
610
611
612
], $structuredContent);
613
- $this->assertEquals('bar', $structuredContent[0]['foo']);
614
- $this->assertEquals('bar', $structuredContent[1]['foo']);
615
}
616
617
private function createValidTool(string $name, ?array $outputSchema = null): Tool
0 commit comments