From 5bff2594ecfe6e91fc98a4fc2d47e31676ff283f Mon Sep 17 00:00:00 2001 From: Sarah Gilberg Date: Tue, 2 Jun 2015 15:47:02 -0400 Subject: [PATCH] updated deprecated use of Yaml::parse --- Tests/ProcessorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/ProcessorTest.php b/Tests/ProcessorTest.php index 30082ba..babf44a 100644 --- a/Tests/ProcessorTest.php +++ b/Tests/ProcessorTest.php @@ -102,7 +102,7 @@ public function testParameterHandling($testCaseName) 'environment' => array(), 'interactive' => false, ), - (array) Yaml::parse($dataDir.'/setup.yml') + (array) Yaml::parse(file_get_contents($dataDir.'/setup.yml')) ); $workingDir = sys_get_temp_dir() . '/incenteev_parameter_handler';