@@ -1010,7 +1010,7 @@ fn test_set_compliance() {
10101010 assert_eq ! ( ciphers. len( ) , FIPS_CIPHERS . len( ) ) ;
10111011
10121012 for cipher in ciphers. into_iter ( ) . zip ( FIPS_CIPHERS ) {
1013- assert_eq ! ( cipher. 0 . name( ) , cipher. 1 )
1013+ assert_eq ! ( cipher. 0 . name( ) , cipher. 1 ) ;
10141014 }
10151015
10161016 let mut ctx = SslContext :: builder ( SslMethod :: tls ( ) ) . unwrap ( ) ;
@@ -1029,7 +1029,7 @@ fn test_set_compliance() {
10291029 assert_eq ! ( ciphers. len( ) , WPA3_192_CIPHERS . len( ) ) ;
10301030
10311031 for cipher in ciphers. into_iter ( ) . zip ( WPA3_192_CIPHERS ) {
1032- assert_eq ! ( cipher. 0 . name( ) , cipher. 1 )
1032+ assert_eq ! ( cipher. 0 . name( ) , cipher. 1 ) ;
10331033 }
10341034
10351035 ctx. set_compliance_policy ( CompliancePolicy :: NONE )
@@ -1092,7 +1092,7 @@ fn test_ssl_set_compliance() {
10921092 assert_eq ! ( ciphers. len( ) , FIPS_CIPHERS . len( ) ) ;
10931093
10941094 for cipher in ciphers. into_iter ( ) . zip ( FIPS_CIPHERS ) {
1095- assert_eq ! ( cipher. 0 . name( ) , cipher. 1 )
1095+ assert_eq ! ( cipher. 0 . name( ) , cipher. 1 ) ;
10961096 }
10971097
10981098 let ctx = SslContext :: builder ( SslMethod :: tls ( ) ) . unwrap ( ) . build ( ) ;
@@ -1112,7 +1112,7 @@ fn test_ssl_set_compliance() {
11121112 assert_eq ! ( ciphers. len( ) , WPA3_192_CIPHERS . len( ) ) ;
11131113
11141114 for cipher in ciphers. into_iter ( ) . zip ( WPA3_192_CIPHERS ) {
1115- assert_eq ! ( cipher. 0 . name( ) , cipher. 1 )
1115+ assert_eq ! ( cipher. 0 . name( ) , cipher. 1 ) ;
11161116 }
11171117
11181118 ssl. set_compliance_policy ( CompliancePolicy :: NONE )
0 commit comments