Skip to content

Commit c5e1c45

Browse files
committed
forgot the single quotes
1 parent 31411bb commit c5e1c45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sqlite/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ test_type!(test_cow_slice<Cow<'_, [u8]>>(Sqlite, "X'01020304'" == Cow::<'static,
219219
test_type!(test_arc_slice<Arc<[u8]>>(Sqlite, "X'01020304'" == Arc::<[u8]>::from([1,2,3,4])));
220220
test_type!(test_rc_slice<Rc<[u8]>>(Sqlite, "X'01020304'" == Rc::<[u8]>::from([1,2,3,4])));
221221

222-
test_type!(test_url<Url>(Sqlite, "https://example.com" == Url::parse("https://example.com").unwrap()));
222+
test_type!(test_url<Url>(Sqlite, "'https://example.com'" == Url::parse("https://example.com").unwrap()));
223223

224224
#[sqlx_macros::test]
225225
async fn test_text_adapter() -> anyhow::Result<()> {

0 commit comments

Comments
 (0)