applease rustfmt

This commit is contained in:
Jorge Aparicio 2022-08-09 11:31:33 +02:00 committed by GitHub
parent 5dc13b35c1
commit e3e3bd42fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1300,10 +1300,10 @@ mod tests {
assert_eq!(xs, array);
assert_eq!(array, xs);
assert_eq!(xs, array.as_slice());
assert_eq!(array.as_slice(), xs);
assert_eq!(xs, &array);
assert_eq!(&array, xs);