From b89988a4e9014221a4dadf3dae2a1dd2ecc6a3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 17 Feb 2014 13:30:04 +0100 Subject: [PATCH] Fix path to a file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- test/selenium/TestConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/selenium/TestConfig.php b/test/selenium/TestConfig.php index 2626b514c1..b78148bd59 100644 --- a/test/selenium/TestConfig.php +++ b/test/selenium/TestConfig.php @@ -39,7 +39,7 @@ class TestConfig public function __construct() { $xmlDoc = new DOMDocument(); - $xmlDoc->load('phpunit.xml.dist'); + $xmlDoc->load('../phpunit.xml.dist'); $searchNode = $xmlDoc->getElementsByTagName("browser"); foreach ($searchNode as $searchNode) { $this->setCurrentBrowser($searchNode->getAttribute('browser'));