style: rustfmt

This commit is contained in:
Ryan Leckey
2020-12-19 00:08:29 -08:00
parent 0c08527fc5
commit e9e1dcf78e
3 changed files with 5 additions and 3 deletions

View File

@@ -112,7 +112,7 @@ mod bstr {
use super::*;
use sqlx::types::bstr::BString;
test_type!(bstring<BString>(Sqlite,
test_type!(bstring<BString>(Sqlite,
"cast('abc123' as blob)" == BString::from(&b"abc123"[..]),
"x'0001020304'" == BString::from(&b"\x00\x01\x02\x03\x04"[..])
));