diff --git a/tig-utils/tests/eth.rs b/tig-utils/tests/eth.rs index 02dcb0a..07f184a 100644 --- a/tig-utils/tests/eth.rs +++ b/tig-utils/tests/eth.rs @@ -150,7 +150,7 @@ mod tests { ) .await .unwrap(), - "luc.eth".to_string() + Some("luc.eth".to_string()) ); assert_eq!( tig_utils::lookup_ens_name( @@ -159,7 +159,7 @@ mod tests { ) .await .unwrap(), - "harrisandtrotter.eth".to_string() + Some("harrisandtrotter.eth".to_string()) ); assert_eq!( tig_utils::lookup_ens_name( @@ -168,7 +168,7 @@ mod tests { ) .await .unwrap(), - "vitalik.eth".to_string() + Some("vitalik.eth".to_string()) ); } }