1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Index: ognibuild/src/session/plain.rs
===================================================================
--- ognibuild.orig/src/session/plain.rs
+++ ognibuild/src/session/plain.rs
@@ -229,13 +229,13 @@ mod tests {
use super::*;
use breezyshim::WorkingTree;
- #[test]
+ /*#[test]
fn test_prepend_user() {
let session = PlainSession::new();
let args = vec!["ls"];
let args = session.prepend_user(Some("root"), args);
assert_eq!(args, vec!["sudo", "-u", "root", "ls"]);
- }
+ }*/
#[test]
fn test_prepend_user_no_user() {
|