File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
gix-odb/tests/odb/regression Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ mod repo_with_small_packs {
17
17
}
18
18
19
19
#[ test]
20
- #[ cfg( feature = "internal-testing- gix-features-parallel" ) ]
20
+ #[ cfg( feature = "gix-features-parallel" ) ]
21
21
fn multi_threaded_access_will_not_panic ( ) -> crate :: Result {
22
22
for arg in [ "no" , "without-multi-index" ] {
23
23
let base = gix_testtools:: scripted_fixture_read_only_with_args ( "make_repo_multi_index.sh" , Some ( arg) ) ?
Original file line number Diff line number Diff line change 1
1
#[ test]
2
- #[ cfg( feature = "internal-testing- gix-features-parallel" ) ]
2
+ #[ cfg( feature = "gix-features-parallel" ) ]
3
3
fn is_send_and_sync ( ) {
4
4
pub fn store_at ( name : & str ) -> crate :: Result < gix_ref:: file:: Store > {
5
5
let path = gix_testtools:: scripted_fixture_read_only_standalone ( name) ?;
6
6
Ok ( gix_ref:: file:: Store :: at (
7
7
path. join ( ".git" ) ,
8
- gix_ref:: store:: WriteReflog :: Normal ,
9
- gix_hash:: Kind :: Sha1 ,
8
+ gix_ref:: store:: init:: Options {
9
+ write_reflog : gix_ref:: store:: WriteReflog :: Normal ,
10
+ object_hash : gix_hash:: Kind :: Sha1 ,
11
+ ..Default :: default ( )
12
+ } ,
10
13
) )
11
14
}
12
15
You can’t perform that action at this time.
0 commit comments