We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c73108e commit 511948aCopy full SHA for 511948a
src/Context/ThenStepDefinitions.php
@@ -295,7 +295,7 @@ public function then_stdout_should_be_csv_containing( TableNode $expected ): voi
295
$output = $this->result->stdout;
296
297
$expected_rows = $expected->getRows();
298
- foreach ( $expected as &$row ) {
+ foreach ( $expected_rows as &$row ) {
299
foreach ( $row as &$value ) {
300
$value = $this->replace_variables( $value );
301
}
@@ -317,7 +317,7 @@ public function then_stdout_should_be_csv_containing( TableNode $expected ): voi
317
318
319
/**
320
- * Expect STDOUT to be YAML containig certain content.
+ * Expect STDOUT to be YAML containing certain content.
321
*
322
* ```
323
* Scenario: My example scenario
0 commit comments