Skip to content

Commit 84d4950

Browse files
adambaratzsmalyshev
authored andcommitted
Use integer placeholders, since values can vary with the TDS version
1 parent b578580 commit 84d4950

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/pdo_dblib/tests/bug_45876.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ $stmt->execute();
1414
var_dump($stmt->getColumnMeta(0));
1515
$stmt = null;
1616
?>
17-
--EXPECT--
17+
--EXPECTF--
1818
array(8) {
1919
["max_length"]=>
20-
int(255)
20+
int(%d)
2121
["precision"]=>
2222
int(0)
2323
["scale"]=>
@@ -29,7 +29,7 @@ array(8) {
2929
["name"]=>
3030
string(13) "TABLE_CATALOG"
3131
["len"]=>
32-
int(255)
32+
int(%d)
3333
["pdo_type"]=>
3434
int(2)
3535
}

0 commit comments

Comments
 (0)