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 4ea0575 commit ea4964dCopy full SHA for ea4964d
tests/framework/db/CommandTest.php
@@ -1539,7 +1539,7 @@ public function testBindValuesSupportsEnums()
1539
$command = $db->createCommand();
1540
1541
$command->setSql('SELECT :p1')->bindValues([':p1' => enums\Status::Active]);
1542
- $this->assertSame('ACTIVE', $command->params[':p1']);
+ $this->assertSame('Active', $command->params[':p1']);
1543
1544
$command->setSql('SELECT :p1')->bindValues([':p1' => enums\StatusTypeString::Active]);
1545
$this->assertSame('active', $command->params[':p1']);
0 commit comments