summaryrefslogtreecommitdiff
path: root/ext/interbase/tests/004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/interbase/tests/004.phpt')
-rw-r--r--ext/interbase/tests/004.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/interbase/tests/004.phpt b/ext/interbase/tests/004.phpt
index 54a6b7b9b5..4e63ce205f 100644
--- a/ext/interbase/tests/004.phpt
+++ b/ext/interbase/tests/004.phpt
@@ -6,7 +6,7 @@ InterBase: BLOB test
<?php
require("interbase.inc");
-
+
$link = ibase_connect($test_base);
ibase_query(
@@ -38,7 +38,7 @@ InterBase: BLOB test
$row = ibase_fetch_object($q);
$bl_h = ibase_blob_open($row->V_BLOB);
- $blob = '';
+ $blob = '';
while($piece = ibase_blob_get($bl_h, 1 + rand() % 1024))
$blob .= $piece;
if($blob != $blob_str)
@@ -47,7 +47,7 @@ InterBase: BLOB test
$bl_h = ibase_blob_open($link,$row->V_BLOB);
- $blob = '';
+ $blob = '';
while($piece = ibase_blob_get($bl_h, 100 * 1024))
$blob .= $piece;
if($blob != $blob_str)
@@ -108,7 +108,7 @@ InterBase: BLOB test
$row = ibase_fetch_object($q);
ibase_commit();
ibase_close();
-
+
$link = ibase_connect($test_base);
ibase_blob_echo($link, $row->V_BLOB);
ibase_free_result($q);