summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/bug47189.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/bug47189.phpt')
-rw-r--r--ext/oci8/tests/bug47189.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/oci8/tests/bug47189.phpt b/ext/oci8/tests/bug47189.phpt
index c82d2cd73b..07c3a9e338 100644
--- a/ext/oci8/tests/bug47189.phpt
+++ b/ext/oci8/tests/bug47189.phpt
@@ -1,10 +1,10 @@
--TEST--
-Bug #47189 (Multiple oci_fetch_all calls)
+Bug #47189 (Multiple oci_fetch_all calls)
--SKIPIF--
<?php
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs: different error handling for this undefined behavior
require(dirname(__FILE__).'/skipif.inc');
-?>
+?>
--FILE--
<?php
@@ -17,7 +17,7 @@ oci_execute($s);
oci_fetch_all($s, $rs, 0, -1, OCI_FETCHSTATEMENT_BY_ROW);
var_dump($rs);
oci_fetch_all($s, $rs1, 0, -1, OCI_FETCHSTATEMENT_BY_ROW);
-var_dump($rs1);
+var_dump($rs1);
echo "Test 2\n";
@@ -26,7 +26,7 @@ oci_execute($s);
oci_fetch_all($s, $rs, 0, 1, OCI_FETCHSTATEMENT_BY_ROW);
var_dump($rs);
oci_fetch_all($s, $rs1, 0, 1, OCI_FETCHSTATEMENT_BY_ROW);
-var_dump($rs1);
+var_dump($rs1);
?>
===DONE===