We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd61d9 commit a146f65Copy full SHA for a146f65
src/extract.rs
@@ -188,12 +188,9 @@ mod test {
188
189
let Codec(data) = Codec::<Data>::from_bytes(bytes, ContentType::Json).unwrap();
190
191
- assert_eq!(
192
- data,
193
- Data {
194
- hello: "world".into()
195
- }
196
- );
+ assert_eq!(data, Data {
+ hello: "world".into()
+ });
197
}
198
199
#[test]
@@ -202,11 +199,8 @@ mod test {
202
203
200
let Codec(data) = Codec::<Data>::from_bytes(bytes, ContentType::MsgPack).unwrap();
204
201
205
206
207
208
209
210
211
212
0 commit comments