tests: fix typo in test name

PR #1528
This commit is contained in:
Paul A. Patience 2020-03-22 07:43:16 -04:00 committed by GitHub
parent 655e33219a
commit 20deae6497
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -511,7 +511,7 @@ rgtest!(context_line_numbers, |dir: Dir, mut cmd: TestCommand| {
eqnice!(expected, cmd.stdout()); eqnice!(expected, cmd.stdout());
}); });
rgtest!(max_filesize_parse_errro_length, |_: Dir, mut cmd: TestCommand| { rgtest!(max_filesize_parse_error_length, |_: Dir, mut cmd: TestCommand| {
cmd.arg("--max-filesize").arg("44444444444444444444"); cmd.arg("--max-filesize").arg("44444444444444444444");
cmd.assert_non_empty_stderr(); cmd.assert_non_empty_stderr();
}); });