File tree Expand file tree Collapse file tree 2 files changed +0
-21
lines changed
rust/catalyst-types/src/uuid Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff 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 ( ) ;
You can’t perform that action at this time.
0 commit comments