summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/bind_unsupported_3.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/bind_unsupported_3.phpt')
-rw-r--r--ext/oci8/tests/bind_unsupported_3.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/oci8/tests/bind_unsupported_3.phpt b/ext/oci8/tests/bind_unsupported_3.phpt
index 5c9dec3729..48b719aa54 100644
--- a/ext/oci8/tests/bind_unsupported_3.phpt
+++ b/ext/oci8/tests/bind_unsupported_3.phpt
@@ -1,10 +1,10 @@
--TEST--
-Bind with various bind types not supported by TimesTen
+Bind with various bind types not supported by TimesTen
--SKIPIF--
<?php
$target_dbs = array('oracledb' => false, 'timesten' => true); // test runs on these DBs
require(dirname(__FILE__).'/skipif.inc');
-?>
+?>
--FILE--
<?php
@@ -23,7 +23,7 @@ foreach ($types as $t => $v) {
$s = oci_parse($c, "select * from dual where dummy = :c1");
$c1 = "Doug";
- oci_bind_by_name($s, ":c1", $c1, -1, $v);
+ oci_bind_by_name($s, ":c1", $c1, -1, $v);
}
?>