@@ -3323,7 +3323,6 @@ mod tests {
3323
3323
) ;
3324
3324
3325
3325
let result = matcher. get_match ( & flag, None , None ) . await . unwrap ( ) ;
3326
- println ! ( "{:?}" , result) ;
3327
3326
3328
3327
assert ! ( result. matches) ;
3329
3328
}
@@ -3411,7 +3410,6 @@ mod tests {
3411
3410
) ;
3412
3411
3413
3412
let result = matcher. get_match ( & flag, None , None ) . await . unwrap ( ) ;
3414
- println ! ( "{:?}" , result) ;
3415
3413
3416
3414
assert ! ( result. matches) ;
3417
3415
}
@@ -3499,7 +3497,6 @@ mod tests {
3499
3497
) ;
3500
3498
3501
3499
let result = matcher. get_match ( & flag, None , None ) . await . unwrap ( ) ;
3502
- println ! ( "{:?}" , result) ;
3503
3500
3504
3501
// The user matches the cohort, but the flag is set to NotIn, so it should evaluate to false
3505
3502
assert ! ( !result. matches) ;
@@ -3613,7 +3610,6 @@ mod tests {
3613
3610
) ;
3614
3611
3615
3612
let result = matcher. get_match ( & flag, None , None ) . await . unwrap ( ) ;
3616
- println ! ( "{:?}" , result) ;
3617
3613
3618
3614
// This test might fail if the system doesn't support cohort dependencies
3619
3615
assert ! ( result. matches) ;
@@ -3702,7 +3698,6 @@ mod tests {
3702
3698
) ;
3703
3699
3704
3700
let result = matcher. get_match ( & flag, None , None ) . await . unwrap ( ) ;
3705
- println ! ( "{:?}" , result) ;
3706
3701
3707
3702
// The user does not match the cohort, and the flag is set to In, so it should evaluate to false
3708
3703
assert ! ( !result. matches) ;
0 commit comments