File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ pub(crate) fn write_test_name(
18
18
write ! (
19
19
writer,
20
20
"{}{}" ,
21
- rest. style( style. module_name ) ,
22
- "::" . style( style. module_name )
21
+ rest. style( style. module_path ) ,
22
+ "::" . style( style. module_path )
23
23
) ?;
24
24
}
25
25
write ! ( writer, "{}" , trailing. style( style. test_name) ) ?;
Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ impl<'a> TestInstance<'a> {
542
542
pub ( super ) struct Styles {
543
543
pub ( super ) binary_id : Style ,
544
544
pub ( super ) test_name : Style ,
545
- pub ( super ) module_name : Style ,
545
+ pub ( super ) module_path : Style ,
546
546
field : Style ,
547
547
}
548
548
@@ -551,7 +551,7 @@ impl Styles {
551
551
self . binary_id = Style :: new ( ) . magenta ( ) . bold ( ) ;
552
552
self . test_name = Style :: new ( ) . blue ( ) . bold ( ) ;
553
553
self . field = Style :: new ( ) . yellow ( ) . bold ( ) ;
554
- self . module_name = Style :: new ( ) . cyan ( ) . bold ( ) ;
554
+ self . module_path = Style :: new ( ) . cyan ( ) . bold ( ) ;
555
555
}
556
556
}
557
557
You can’t perform that action at this time.
0 commit comments