Skip to content

Commit 797adbe

Browse files
committed
remove printlns
1 parent 9ccf479 commit 797adbe

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

rust/feature-flags/src/flag_matching.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3323,7 +3323,6 @@ mod tests {
33233323
);
33243324

33253325
let result = matcher.get_match(&flag, None, None).await.unwrap();
3326-
println!("{:?}", result);
33273326

33283327
assert!(result.matches);
33293328
}
@@ -3411,7 +3410,6 @@ mod tests {
34113410
);
34123411

34133412
let result = matcher.get_match(&flag, None, None).await.unwrap();
3414-
println!("{:?}", result);
34153413

34163414
assert!(result.matches);
34173415
}
@@ -3499,7 +3497,6 @@ mod tests {
34993497
);
35003498

35013499
let result = matcher.get_match(&flag, None, None).await.unwrap();
3502-
println!("{:?}", result);
35033500

35043501
// The user matches the cohort, but the flag is set to NotIn, so it should evaluate to false
35053502
assert!(!result.matches);
@@ -3613,7 +3610,6 @@ mod tests {
36133610
);
36143611

36153612
let result = matcher.get_match(&flag, None, None).await.unwrap();
3616-
println!("{:?}", result);
36173613

36183614
// This test might fail if the system doesn't support cohort dependencies
36193615
assert!(result.matches);
@@ -3702,7 +3698,6 @@ mod tests {
37023698
);
37033699

37043700
let result = matcher.get_match(&flag, None, None).await.unwrap();
3705-
println!("{:?}", result);
37063701

37073702
// The user does not match the cohort, and the flag is set to In, so it should evaluate to false
37083703
assert!(!result.matches);

0 commit comments

Comments
 (0)