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); } } }