Skip to content

Commit 6a76a0c

Browse files
committed
lint fix
1 parent 8b3072e commit 6a76a0c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Context/Support.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,10 @@ protected function check_that_json_string_contains_json_string( $actual_json, $e
174174
protected function check_that_csv_string_contains_values( $actual_csv, $expected_csv ) {
175175
$actual_csv = array_map(
176176
static function ( $str ) {
177-
return str_getcsv( $str, ',', '"', "\\" );
178-
}, explode( PHP_EOL, $actual_csv ) );
177+
return str_getcsv( $str, ',', '"', '\\' );
178+
},
179+
explode( PHP_EOL, $actual_csv )
180+
);
179181

180182
if ( empty( $actual_csv ) ) {
181183
return false;

0 commit comments

Comments
 (0)