File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ impl Display for Variant {
124
124
fn fmt ( & self , f : & mut Formatter < ' _ > ) -> fmt:: Result {
125
125
write ! ( f, "{}" , self . name) ?;
126
126
if f. alternate ( ) {
127
- f. write_str ( ": " ) ?;
127
+ f. write_str ( "= " ) ?;
128
128
Display :: fmt ( & self . tag , f) ?;
129
129
}
130
130
Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ where T: Clone + PartialEq + Debug
143
143
/// Test case failure representing failed byte string representation of the
144
144
/// encoded enum variant
145
145
#[ display(
146
- "Enum variant `{enum_name}: {variant_name}` has incorrect encoding:
146
+ "Enum variant `{enum_name}. {variant_name}` has incorrect encoding:
147
147
\t Expected: {expected:02x?}
148
148
\t Actual: {actual:02x?}
149
149
"
You can’t perform that action at this time.
0 commit comments