aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2012-11-06 10:10:20 -0600
committerNathaniel Guse <nathaniel.guse@gmail.com>2012-11-06 10:10:20 -0600
commit03e348cf58c9b71ab00f0badb76a4426c2c71289 (patch)
tree432851b7f0ae7698c704a82990b1fd4b16510f8b
parent05e74b82ac5b65896b1a6aa5b7bca7aa1acd3ada (diff)
downloadforums-03e348cf58c9b71ab00f0badb76a4426c2c71289.tar
forums-03e348cf58c9b71ab00f0badb76a4426c2c71289.tar.gz
forums-03e348cf58c9b71ab00f0badb76a4426c2c71289.tar.bz2
forums-03e348cf58c9b71ab00f0badb76a4426c2c71289.tar.xz
forums-03e348cf58c9b71ab00f0badb76a4426c2c71289.zip
[ticket/11103] Remove error suppression in test case helpers
PHPBB3-11103
-rw-r--r--tests/test_framework/phpbb_test_case_helpers.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_framework/phpbb_test_case_helpers.php b/tests/test_framework/phpbb_test_case_helpers.php
index f8e3e8aac3..d10645a732 100644
--- a/tests/test_framework/phpbb_test_case_helpers.php
+++ b/tests/test_framework/phpbb_test_case_helpers.php
@@ -185,11 +185,11 @@ class phpbb_test_case_helpers
{
if (is_dir($file))
{
- @rmdir($file);
+ rmdir($file);
}
else
{
- @unlink($file);
+ unlink($file);
}
}
}
@@ -215,11 +215,11 @@ class phpbb_test_case_helpers
{
$this->empty_dir($path . $file);
- @rmdir($path . $file);
+ rmdir($path . $file);
}
else
{
- @unlink($path . $file);
+ unlink($path . $file);
}
}
}