From 96bddfbc4540d076623ad95009c29503094bebf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9lisset=20Vincent?= Date: Thu, 9 Feb 2017 15:06:05 +0100 Subject: [PATCH] Fix codeception path in config who was ignored --- src/PHPCensor/Plugin/Codeception.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/PHPCensor/Plugin/Codeception.php b/src/PHPCensor/Plugin/Codeception.php index 8bd31519..64f22dd2 100644 --- a/src/PHPCensor/Plugin/Codeception.php +++ b/src/PHPCensor/Plugin/Codeception.php @@ -67,6 +67,9 @@ class Codeception extends Plugin implements ZeroConfigPluginInterface if (isset($options['args'])) { $this->args = (string) $options['args']; } + if (isset($options['path'])) { + $this->path = $options['path']; + } } /**