Skip to content

Commit

Permalink
Correct typo in test (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov authored Jul 20, 2023
1 parent 04a6a66 commit 8a171dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/ColumnSchemaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
use Yiisoft\Db\Query\Query;
use Yiisoft\Db\Schema\SchemaInterface;

use function str_repeat;

/**
* @group mysql
*
Expand Down Expand Up @@ -92,7 +94,7 @@ public function testPhpTypeCast(): void

$intColPhpType = $tableSchema->getColumn('int_col')?->phpTypecast($query['int_col']);
$charColPhpType = $tableSchema->getColumn('char_col')?->phpTypecast($query['char_col']);
$charCol3PhpType = $tableSchema->getColumn('char_col')?->phpTypecast($query['char_col3']);
$charCol3PhpType = $tableSchema->getColumn('char_col3')?->phpTypecast($query['char_col3']);
$floatColPhpType = $tableSchema->getColumn('float_col')?->phpTypecast($query['float_col']);
$blobColPhpType = $tableSchema->getColumn('blob_col')?->phpTypecast($query['blob_col']);
$timePhpType = $tableSchema->getColumn('time')?->phpTypecast($query['time']);
Expand Down

0 comments on commit 8a171dd

Please sign in to comment.