mirror of
				https://github.com/juspay/hyperswitch.git
				synced 2025-10-31 10:06:32 +08:00 
			
		
		
		
	chore: address Rust 1.88.0 clippy lints (#8498)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
		| @ -283,8 +283,7 @@ mod domain_tests { | ||||
|         for domain in valid_domains { | ||||
|             assert!( | ||||
|                 validate_strict_domain(domain), | ||||
|                 "Could not validate strict domain: {}", | ||||
|                 domain | ||||
|                 "Could not validate strict domain: {domain}", | ||||
|             ); | ||||
|         } | ||||
|  | ||||
| @ -299,8 +298,7 @@ mod domain_tests { | ||||
|         for domain in invalid_domains { | ||||
|             assert!( | ||||
|                 !validate_strict_domain(domain), | ||||
|                 "Could not validate invalid strict domain: {}", | ||||
|                 domain | ||||
|                 "Could not validate invalid strict domain: {domain}", | ||||
|             ); | ||||
|         } | ||||
|     } | ||||
| @ -328,8 +326,7 @@ mod domain_tests { | ||||
|         for domain in valid_domains { | ||||
|             assert!( | ||||
|                 validate_wildcard_domain(domain), | ||||
|                 "Could not validate wildcard domain: {}", | ||||
|                 domain | ||||
|                 "Could not validate wildcard domain: {domain}", | ||||
|             ); | ||||
|         } | ||||
|  | ||||
| @ -349,8 +346,7 @@ mod domain_tests { | ||||
|         for domain in invalid_domains { | ||||
|             assert!( | ||||
|                 !validate_wildcard_domain(domain), | ||||
|                 "Could not validate invalid wildcard domain: {}", | ||||
|                 domain | ||||
|                 "Could not validate invalid wildcard domain: {domain}", | ||||
|             ); | ||||
|         } | ||||
|     } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Chethan Rao
					Chethan Rao