Skip to content

Commit

Permalink
Review Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Furisto committed Oct 18, 2021
1 parent 519ea4a commit f258470
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions youki_integration_test/src/tests/cgroups/pids.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,17 +153,17 @@ fn can_run() -> bool {
pub fn get_test_group<'a>() -> TestGroup<'a> {
let mut test_group = TestGroup::new("cgroup_v1_pids");
let positive_limit = ConditionalTest::new(
"positive pid limit",
"positive_pid_limit",
Box::new(can_run),
Box::new(test_positive_limit),
);
let zero_limit = ConditionalTest::new(
"zero pid limit",
"zero_pid_limit",
Box::new(can_run),
Box::new(test_zero_limit),
);
let negative_limit = ConditionalTest::new(
"negative pid limit",
"negative_pid_limit",
Box::new(can_run),
Box::new(test_negative_limit),
);
Expand Down

0 comments on commit f258470

Please sign in to comment.