summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/integration/features/bootstrap/CommandLine.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/CommandLine.php b/build/integration/features/bootstrap/CommandLine.php
index 060e2b5be26..d6e614be90f 100644
--- a/build/integration/features/bootstrap/CommandLine.php
+++ b/build/integration/features/bootstrap/CommandLine.php
@@ -160,7 +160,7 @@ trait CommandLine {
public function theCommandOutputContainsTheText($text) {
$lines = $this->findLines($this->lastStdOut, $text);
if (empty($lines)) {
- throw new \Exception('The command did not output the expected text on stdout "' . $exceptionText . '"');
+ throw new \Exception('The command did not output the expected text on stdout "' . $text . '"');
}
}
@@ -170,7 +170,7 @@ trait CommandLine {
public function theCommandErrorOutputContainsTheText($text) {
$lines = $this->findLines($this->lastStdErr, $text);
if (empty($lines)) {
- throw new \Exception('The command did not output the expected text on stderr "' . $exceptionText . '"');
+ throw new \Exception('The command did not output the expected text on stderr "' . $text . '"');
}
}
}