summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/drcp_pconn_close1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/drcp_pconn_close1.phpt')
-rw-r--r--ext/oci8/tests/drcp_pconn_close1.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/oci8/tests/drcp_pconn_close1.phpt b/ext/oci8/tests/drcp_pconn_close1.phpt
index 83dad880d9..e4849169ae 100644
--- a/ext/oci8/tests/drcp_pconn_close1.phpt
+++ b/ext/oci8/tests/drcp_pconn_close1.phpt
@@ -13,7 +13,7 @@ require __DIR__."/details.inc";
// Test will open a persistent connection
// Close the connection
// Open another connection
-// With oci_close() being a no-op, the same conneciton will be returned
+// With oci_close() being a no-op, the same connection will be returned
echo "This is with a OCI_PCONNECT\n";
var_dump($conn1 = oci_pconnect($user,$password,$dbase));
@@ -29,9 +29,9 @@ oci_close($conn2);
// Compare the resource numbers
if ($rn1 === $rn2)
- echo "Both connections share a resource : OK\n";
+ echo "Both connections share a resource : OK\n";
else
- echo "Both connections are different : NOT OK\n";
+ echo "Both connections are different : NOT OK\n";
echo "Done\n";