Skip to content

Commit 35a02ca

Browse files
committed
fix: lint
1 parent 06bfb99 commit 35a02ca

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

rust/catalyst-types/src/uuid/uuid_v4.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,6 @@ mod tests {
103103
);
104104
}
105105

106-
#[test]
107-
fn test_display_trait() {
108-
let valid_uuid = UuidV4::from(Uuid::new_v4());
109-
assert_eq!(
110-
format!("{}", valid_uuid),
111-
valid_uuid.uuid().to_string(),
112-
"Display implementation should match UUID string"
113-
);
114-
}
115-
116106
#[test]
117107
fn test_try_from_cbor_valid_uuid() {
118108
let uuid = Uuid::new_v4();

rust/catalyst-types/src/uuid/uuid_v7.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -106,17 +106,6 @@ mod tests {
106106
);
107107
}
108108

109-
#[test]
110-
fn test_display_trait() {
111-
let valid_uuid =
112-
UuidV7::from(Uuid::try_parse("017f22e3-79b0-7cc7-98cf-e0bbf8a1c5f1").unwrap());
113-
assert_eq!(
114-
format!("{}", valid_uuid),
115-
valid_uuid.uuid().to_string(),
116-
"Display implementation should match UUID string"
117-
);
118-
}
119-
120109
#[test]
121110
fn test_try_from_cbor_valid_uuid() {
122111
let uuid = Uuid::try_parse("017f22e3-79b0-7cc7-98cf-e0bbf8a1c5f1").unwrap();

0 commit comments

Comments
 (0)