diff --git a/tests/cgroup.rs b/tests/cgroup.rs index 61a9b9a..413fca7 100644 --- a/tests/cgroup.rs +++ b/tests/cgroup.rs @@ -23,9 +23,7 @@ fn test_tasks_iterator() { tasks = cg.tasks().into_iter(); // Verify that it was indeed removed. - //assert_eq!(tasks.next(), None); - // ^ This is disabled, because it requires root privileges and there's no way around it - // right now. + assert_eq!(tasks.next(), None); } cg.delete(); }