@@ -67,10 +67,10 @@ fn test_passwords(
67
67
sink ( harmless) ;
68
68
sink ( encrypted_password) ;
69
69
sink ( password_hash) ;
70
- sink ( passwordFile) ; // $ SPURIOUS: sensitive=password
70
+ sink ( passwordFile) ;
71
71
72
72
sink ( ms. harmless . as_str ( ) ) ;
73
- sink ( ms. password_file_path . as_str ( ) ) ; // $ SPURIOUS: sensitive=password
73
+ sink ( ms. password_file_path . as_str ( ) ) ;
74
74
sink ( ms. password_enabled . as_str ( ) ) ; // $ SPURIOUS: sensitive=password
75
75
sink ( ms. numfailed . as_str ( ) ) ;
76
76
@@ -127,11 +127,11 @@ fn test_credentials(
127
127
128
128
sink ( hashkey) ;
129
129
sink ( hash_key) ;
130
- sink ( sessionkeypath) ; // $ SPURIOUS: sensitive=id
131
- sink ( account_key_path) ; // $ SPURIOUS: sensitive=id
130
+ sink ( sessionkeypath) ;
131
+ sink ( account_key_path) ;
132
132
133
- sink ( ms. get_certificate_url ( ) ) ; // $ SPURIOUS: sensitive=certificate
134
- sink ( ms. get_certificate_file ( ) ) ; // $ SPURIOUS: sensitive=certificate
133
+ sink ( ms. get_certificate_url ( ) ) ;
134
+ sink ( ms. get_certificate_file ( ) ) ;
135
135
136
136
sink ( get_public_key ( ) ) ;
137
137
sink ( get_next_token ( ) ) ;
@@ -343,8 +343,8 @@ fn test_private_info(
343
343
sink ( info. financials . harmless . as_str ( ) ) ;
344
344
sink ( info. financials . num_accounts ) ; // $ SPURIOUS: sensitive=id
345
345
sink ( info. financials . total_accounts ) ; // $ SPURIOUS: sensitive=id
346
- sink ( info. financials . accounting ) ; // $ SPURIOUS: sensitive=id
347
- sink ( info. financials . unaccounted ) ; // $ SPURIOUS: sensitive=id
346
+ sink ( info. financials . accounting ) ;
347
+ sink ( info. financials . unaccounted ) ;
348
348
sink ( info. financials . multiband ) ;
349
349
350
350
sink ( ContactDetails :: FavouriteColor ( "blue" . to_string ( ) ) ) ;
@@ -362,5 +362,5 @@ impl MyArray {
362
362
363
363
fn test_iterator ( ) {
364
364
let iter = std:: iter:: repeat ( 1 ) . take ( 10 ) ;
365
- sink ( MyArray :: from_trusted_iterator ( iter) ) ; // $ SPURIOUS: sensitive=secret
365
+ sink ( MyArray :: from_trusted_iterator ( iter) ) ;
366
366
}
0 commit comments