From af12452fca1a293ef2c354a50184e63266bc399b Mon Sep 17 00:00:00 2001 From: Levente Kurusa Date: Sun, 9 Sep 2018 16:46:15 +0200 Subject: [PATCH] tests: cgroup: re-enable the test for moving the task Signed-off-by: Levente Kurusa --- tests/cgroup.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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(); }