diff options
author | Felipe Pena <felipe@php.net> | 2008-10-09 01:08:55 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-10-09 01:08:55 +0000 |
commit | 62d223996496931572ae45bf8f25ade4b8845e7b (patch) | |
tree | 93036a1706c9d83e15c1dbb16d958401862c4b3b | |
parent | 61d3c9f8c7720831e11994296ef97c1380d2440a (diff) | |
download | php-git-62d223996496931572ae45bf8f25ade4b8845e7b.tar.gz |
- Fix typo
-rw-r--r-- | ext/pdo_mysql/tests/pdo_mysql_prepare_native.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_mysql/tests/pdo_mysql_prepare_native.phpt b/ext/pdo_mysql/tests/pdo_mysql_prepare_native.phpt index 87438011fb..1d5f301608 100644 --- a/ext/pdo_mysql/tests/pdo_mysql_prepare_native.phpt +++ b/ext/pdo_mysql/tests/pdo_mysql_prepare_native.phpt @@ -114,7 +114,7 @@ $db = MySQLPDOTest::factory(); $row = $stmt->fetch(PDO::FETCH_ASSOC); if ($row !== $expected) { - printf("[004a] Expecting %s got %s\n", var_export($expected, true), vat_export($row, true)); + printf("[004a] Expecting %s got %s\n", var_export($expected, true), var_export($row, true)); } prepex(5, $db, 'DROP TABLE IF EXISTS test'); @@ -377,4 +377,4 @@ array(2) { string(10) "second row" } } -done!
\ No newline at end of file +done! |