@@ -40,7 +40,7 @@ rgtest!(after_match1_implicit, |dir: Dir, mut cmd: TestCommand| {
4040
4141 let expected = "\
4242 hay:1:The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle
43- WARNING: stopped searching binary file hay after match (found \" \\ 0\" byte around offset 9741)
43+ hay: WARNING: stopped searching binary file after match (found \" \\ 0\" byte around offset 9741)
4444" ;
4545 eqnice!( expected, cmd. stdout( ) ) ;
4646} ) ;
@@ -53,7 +53,7 @@ rgtest!(after_match1_explicit, |dir: Dir, mut cmd: TestCommand| {
5353
5454 let expected = "\
5555 1:The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle
56- Binary file matches (found \" \\ 0\" byte around offset 9741)
56+ binary file matches (found \" \\ 0\" byte around offset 9741)
5757" ;
5858 eqnice!( expected, cmd. stdout( ) ) ;
5959} ) ;
@@ -64,7 +64,7 @@ rgtest!(after_match1_stdin, |_: Dir, mut cmd: TestCommand| {
6464
6565 let expected = "\
6666 1:The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle
67- Binary file matches (found \" \\ 0\" byte around offset 9741)
67+ binary file matches (found \" \\ 0\" byte around offset 9741)
6868" ;
6969 eqnice!( expected, cmd. pipe( HAY ) ) ;
7070} ) ;
@@ -85,7 +85,7 @@ rgtest!(after_match1_implicit_binary, |dir: Dir, mut cmd: TestCommand| {
8585
8686 let expected = "\
8787 hay:1:The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle
88- Binary file hay matches (found \" \\ 0\" byte around offset 9741)
88+ hay: binary file matches (found \" \\ 0\" byte around offset 9741)
8989" ;
9090 eqnice!( expected, cmd. stdout( ) ) ;
9191} ) ;
@@ -200,7 +200,7 @@ rgtest!(after_match2_implicit, |dir: Dir, mut cmd: TestCommand| {
200200
201201 let expected = "\
202202 hay:1:The Project Gutenberg EBook of A Study In Scarlet, by Arthur Conan Doyle
203- WARNING: stopped searching binary file hay after match (found \" \\ 0\" byte around offset 9741)
203+ hay: WARNING: stopped searching binary file after match (found \" \\ 0\" byte around offset 9741)
204204" ;
205205 eqnice!( expected, cmd. stdout( ) ) ;
206206} ) ;
@@ -240,7 +240,7 @@ rgtest!(before_match1_explicit, |dir: Dir, mut cmd: TestCommand| {
240240 cmd. args( & [ "--no-mmap" , "-n" , "Heaven" , "hay" ] ) ;
241241
242242 let expected = "\
243- Binary file matches (found \" \\ 0\" byte around offset 9741)
243+ binary file matches (found \" \\ 0\" byte around offset 9741)
244244" ;
245245 eqnice!( expected, cmd. stdout( ) ) ;
246246} ) ;
@@ -253,7 +253,7 @@ rgtest!(before_match1_implicit_binary, |dir: Dir, mut cmd: TestCommand| {
253253 cmd. args( & [ "--no-mmap" , "-n" , "--binary" , "Heaven" , "-g" , "hay" ] ) ;
254254
255255 let expected = "\
256- Binary file hay matches (found \" \\ 0\" byte around offset 9741)
256+ hay: binary file matches (found \" \\ 0\" byte around offset 9741)
257257" ;
258258 eqnice!( expected, cmd. stdout( ) ) ;
259259} ) ;
@@ -288,7 +288,7 @@ rgtest!(before_match2_explicit, |dir: Dir, mut cmd: TestCommand| {
288288 cmd. args( & [ "--no-mmap" , "-n" , "a medical student" , "hay" ] ) ;
289289
290290 let expected = "\
291- Binary file matches (found \" \\ 0\" byte around offset 9741)
291+ binary file matches (found \" \\ 0\" byte around offset 9741)
292292" ;
293293 eqnice!( expected, cmd. stdout( ) ) ;
294294} ) ;
0 commit comments