Skip to content

Commit

Permalink
Issue #3682: workaround for the last line no longer needed
Browse files Browse the repository at this point in the history
quite sensible, that last line of the CSV export now has a newline
at the end of the line
  • Loading branch information
bschmalhofer committed Sep 4, 2024
1 parent 6ec25cf commit 0ce581a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion scripts/test/Console/Command/Admin/ImportExport/Export.t
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ ok( -e $ExportFilename, 'export file was finally generated' );
my @ExpectedLines = map {s/<<RANDOM_ID>>/$RandomID/r} $ExpectedResultFile->slurp;
is( scalar @ExpectedLines, 22, 'got some expected content' );
my @Lines = file($ExportFilename)->slurp;
$Lines[-1] .= "\n";
is(
\@Lines,
\@ExpectedLines,
Expand Down

0 comments on commit 0ce581a

Please sign in to comment.