Skip to content

Commit 1f05eb0

Browse files
committed
Fix MSSQL UUID test
Fix MSSQL UUID test The MSSQL UUID test was failing due to an incorrect query string. This commit removes the extra character.
1 parent 4f5d3a4 commit 1f05eb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/any/any.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ async fn it_has_uuid() -> anyhow::Result<()> {
119119
assert_eq!(
120120
Uuid::parse_str("123e4567-e89b-12d3-a456-426614174000")?,
121121
get_val::<Uuid>(if cfg!(feature = "mssql") {
122-
"CONVERT(uniqueidentifier, '123e4567-e89b-12d3-a456-426614174000')²"
122+
"CONVERT(uniqueidentifier, '123e4567-e89b-12d3-a456-426614174000')"
123123
} else if cfg!(feature = "postgres") {
124124
"'123e4567-e89b-12d3-a456-426614174000'::uuid"
125125
} else {

0 commit comments

Comments
 (0)