From 2dd65d2acaf808da5a87be080b25d436c633590a Mon Sep 17 00:00:00 2001 From: Christian Kerl Date: Wed, 24 Aug 2011 17:23:24 +0200 Subject: [PATCH] fixed fixture path in unit test --- Tests/Soap/SoapRequestTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Soap/SoapRequestTest.php b/Tests/Soap/SoapRequestTest.php index 53375a2..f95b034 100644 --- a/Tests/Soap/SoapRequestTest.php +++ b/Tests/Soap/SoapRequestTest.php @@ -40,6 +40,6 @@ class SoapRequestTest extends \PHPUnit_Framework_TestCase private function loadRequestContentFixture($name) { - return file_get_contents(__DIR__.'/../Fixtures/Soap/'.$name); + return file_get_contents(__DIR__.'/../fixtures/Soap/'.$name); } }