From b5adc96c939fc24f02a6ef8aa7e56ac69f74853a Mon Sep 17 00:00:00 2001 From: Kamil Kokot Date: Wed, 10 Aug 2016 00:35:38 +0200 Subject: [PATCH] Remove duplication in "Behat configuration containing" step --- src/Context/TestContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Context/TestContext.php b/src/Context/TestContext.php index 1e7d07b..fb34132 100644 --- a/src/Context/TestContext.php +++ b/src/Context/TestContext.php @@ -72,7 +72,7 @@ public function afterScenario() */ public function thereIsConfiguration($content) { - self::$filesystem->dumpFile(self::$workingDir . '/behat.yml', (string) $content); + $this->thereIsFile('behat.yml', $content); } /**