Skip to content

Commit bf855c7

Browse files
committed
fix sqlsrv tests
1 parent 94ba245 commit bf855c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/_support/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function seeInDatabaseExtended(string $table, array $where): void
5555
public function field(string $name): string
5656
{
5757
if ($this->db->DBDriver === 'SQLSRV') {
58-
return "CONVERT(VARCHAR, {$name})";
58+
return "CONVERT(VARCHAR(MAX), {$name})";
5959
}
6060

6161
return $name;

0 commit comments

Comments
 (0)