@@ -40,7 +40,7 @@ rgtest!(after_match1_implicit, |dir: Dir, mut cmd: TestCommand| {
40
40
41
41
let expected = "\
42
42
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)
44
44
" ;
45
45
eqnice!( expected, cmd. stdout( ) ) ;
46
46
} ) ;
@@ -53,7 +53,7 @@ rgtest!(after_match1_explicit, |dir: Dir, mut cmd: TestCommand| {
53
53
54
54
let expected = "\
55
55
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)
57
57
" ;
58
58
eqnice!( expected, cmd. stdout( ) ) ;
59
59
} ) ;
@@ -64,7 +64,7 @@ rgtest!(after_match1_stdin, |_: Dir, mut cmd: TestCommand| {
64
64
65
65
let expected = "\
66
66
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)
68
68
" ;
69
69
eqnice!( expected, cmd. pipe( HAY ) ) ;
70
70
} ) ;
@@ -85,7 +85,7 @@ rgtest!(after_match1_implicit_binary, |dir: Dir, mut cmd: TestCommand| {
85
85
86
86
let expected = "\
87
87
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)
89
89
" ;
90
90
eqnice!( expected, cmd. stdout( ) ) ;
91
91
} ) ;
@@ -200,7 +200,7 @@ rgtest!(after_match2_implicit, |dir: Dir, mut cmd: TestCommand| {
200
200
201
201
let expected = "\
202
202
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)
204
204
" ;
205
205
eqnice!( expected, cmd. stdout( ) ) ;
206
206
} ) ;
@@ -240,7 +240,7 @@ rgtest!(before_match1_explicit, |dir: Dir, mut cmd: TestCommand| {
240
240
cmd. args( & [ "--no-mmap" , "-n" , "Heaven" , "hay" ] ) ;
241
241
242
242
let expected = "\
243
- Binary file matches (found \" \\ 0\" byte around offset 9741)
243
+ binary file matches (found \" \\ 0\" byte around offset 9741)
244
244
" ;
245
245
eqnice!( expected, cmd. stdout( ) ) ;
246
246
} ) ;
@@ -253,7 +253,7 @@ rgtest!(before_match1_implicit_binary, |dir: Dir, mut cmd: TestCommand| {
253
253
cmd. args( & [ "--no-mmap" , "-n" , "--binary" , "Heaven" , "-g" , "hay" ] ) ;
254
254
255
255
let expected = "\
256
- Binary file hay matches (found \" \\ 0\" byte around offset 9741)
256
+ hay: binary file matches (found \" \\ 0\" byte around offset 9741)
257
257
" ;
258
258
eqnice!( expected, cmd. stdout( ) ) ;
259
259
} ) ;
@@ -288,7 +288,7 @@ rgtest!(before_match2_explicit, |dir: Dir, mut cmd: TestCommand| {
288
288
cmd. args( & [ "--no-mmap" , "-n" , "a medical student" , "hay" ] ) ;
289
289
290
290
let expected = "\
291
- Binary file matches (found \" \\ 0\" byte around offset 9741)
291
+ binary file matches (found \" \\ 0\" byte around offset 9741)
292
292
" ;
293
293
eqnice!( expected, cmd. stdout( ) ) ;
294
294
} ) ;
0 commit comments