File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
gix-filter/tests/pipeline Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ fn all_stages_mean_streaming_is_impossible() -> gix_testtools::Result {
53
53
Path :: new ( "any.txt" ) ,
54
54
& mut |path, attrs| {
55
55
cache
56
- . at_entry ( path, Some ( false ) , gix_object:: find:: Never )
56
+ . at_entry ( path, Some ( false ) , & gix_object:: find:: Never )
57
57
. expect ( "cannot fail" )
58
58
. matching_attributes ( attrs) ;
59
59
} ,
@@ -82,7 +82,7 @@ fn only_driver_means_streaming_is_possible() -> gix_testtools::Result {
82
82
Path :: new ( "subdir/doesnot/matter/any.txt" ) ,
83
83
& mut |path, attrs| {
84
84
cache
85
- . at_entry ( path, Some ( false ) , gix_object:: find:: Never )
85
+ . at_entry ( path, Some ( false ) , & gix_object:: find:: Never )
86
86
. expect ( "cannot fail" )
87
87
. matching_attributes ( attrs) ;
88
88
} ,
@@ -112,7 +112,7 @@ fn no_filter_means_reader_is_returned_unchanged() -> gix_testtools::Result {
112
112
Path :: new ( "other.txt" ) ,
113
113
& mut |path, attrs| {
114
114
cache
115
- . at_entry ( path, Some ( false ) , gix_object:: find:: Never )
115
+ . at_entry ( path, Some ( false ) , & gix_object:: find:: Never )
116
116
. expect ( "cannot fail" )
117
117
. matching_attributes ( attrs) ;
118
118
} ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ fn all_stages() -> gix_testtools::Result {
21
21
"any.txt" . into ( ) ,
22
22
& mut |path, attrs| {
23
23
cache
24
- . at_entry ( path, Some ( false ) , gix_object:: find:: Never )
24
+ . at_entry ( path, Some ( false ) , & gix_object:: find:: Never )
25
25
. expect ( "cannot fail" )
26
26
. matching_attributes ( attrs) ;
27
27
} ,
@@ -54,7 +54,7 @@ fn all_stages_no_filter() -> gix_testtools::Result {
54
54
"other.txt" . into ( ) ,
55
55
& mut |path, attrs| {
56
56
cache
57
- . at_entry ( path, Some ( false ) , gix_object:: find:: Never )
57
+ . at_entry ( path, Some ( false ) , & gix_object:: find:: Never )
58
58
. expect ( "cannot fail" )
59
59
. matching_attributes ( attrs) ;
60
60
} ,
@@ -86,7 +86,7 @@ fn no_filter() -> gix_testtools::Result {
86
86
"other.txt" . into ( ) ,
87
87
& mut |path, attrs| {
88
88
cache
89
- . at_entry ( path, Some ( false ) , gix_object:: find:: Never )
89
+ . at_entry ( path, Some ( false ) , & gix_object:: find:: Never )
90
90
. expect ( "cannot fail" )
91
91
. matching_attributes ( attrs) ;
92
92
} ,
You can’t perform that action at this time.
0 commit comments