From 25d4432c7ffb2e0a39c1e6a0ea8f600fc1381b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 2 Dec 2012 14:04:38 +0100 Subject: [PATCH] Remove unnecessary white-space before semicolons in statements --- test/QueryTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/QueryTest.php b/test/QueryTest.php index 071d3d2..00d7098 100644 --- a/test/QueryTest.php +++ b/test/QueryTest.php @@ -195,7 +195,7 @@ public function testXpathPhpFunctionsShouldBeDisableByDefault() try { $this->query->queryXpath('//meta[php:functionString("strtolower", @http-equiv) = "content-type"]'); } catch (\Exception $e) { - return ; + return; } $this->assertFails('XPath PHPFunctions should be disable by default'); } @@ -218,7 +218,7 @@ public function testXpathPhpFunctionsShouldBeNotCalledWhenSpecifiedFunction() $this->query->queryXpath('//meta[php:functionString("strtolower", @http-equiv) = "content-type"]'); } catch (\Exception $e) { // $e->getMessage() - Not allowed to call handler 'strtolower() - return ; + return; } $this->assertFails('Not allowed to call handler strtolower()'); }