summaryrefslogtreecommitdiff
path: root/ext/pdo_oci/tests/bug_33707.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_oci/tests/bug_33707.phpt')
-rw-r--r--ext/pdo_oci/tests/bug_33707.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_oci/tests/bug_33707.phpt b/ext/pdo_oci/tests/bug_33707.phpt
index 9b682cac95..7765d36343 100644
--- a/ext/pdo_oci/tests/bug_33707.phpt
+++ b/ext/pdo_oci/tests/bug_33707.phpt
@@ -12,7 +12,7 @@ require 'ext/pdo/tests/pdo_test.inc';
$db = PDOTest::test_factory('ext/pdo_oci/tests/common.phpt');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
-$rs = $db->query('select blah from a_table_that_doesnt_exist');
+$rs = $db->query('select blah from a_table_that_does_not_exist');
var_dump($rs);
var_dump($db->errorInfo());
--EXPECTF--