summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug46160.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug46160.phpt')
-rw-r--r--ext/spl/tests/bug46160.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/tests/bug46160.phpt b/ext/spl/tests/bug46160.phpt
index e4dbdff192..3e03f094d3 100644
--- a/ext/spl/tests/bug46160.phpt
+++ b/ext/spl/tests/bug46160.phpt
@@ -4,8 +4,8 @@ Bug #46160 (SPL - Memory leak when exception is throwed in offsetSet method)
<?php
try {
- $x = new splqueue;
- $x->offsetSet(0, 0);
+ $x = new splqueue;
+ $x->offsetSet(0, 0);
} catch (Exception $e) { }
?>