From 08dbbde3ce7d623f9dae10cd967204fd2c8d8ab8 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 7 Jul 2019 16:52:05 +0200 Subject: [PATCH] Fix more tests Signed-off-by: Igor Gnatenko --- 0001-Avoid-using-python-in-the-tests.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/0001-Avoid-using-python-in-the-tests.patch b/0001-Avoid-using-python-in-the-tests.patch index 5f267e3..e208d05 100644 --- a/0001-Avoid-using-python-in-the-tests.patch +++ b/0001-Avoid-using-python-in-the-tests.patch @@ -1,4 +1,4 @@ -From 0a8361d3356d3a3a65f91065c75ca2e5df43c697 Mon Sep 17 00:00:00 2001 +From e7bf10727318be0209e058628288e3d3b48f5a8b Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 7 Jul 2019 16:36:34 +0200 Subject: [PATCH] Avoid using python in the tests @@ -10,7 +10,7 @@ Signed-off-by: Igor Gnatenko 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/lib.rs b/src/lib.rs -index 5e65ba3..345dfc5 100644 +index 5e65ba3..aa050e2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -39,8 +39,8 @@ @@ -20,7 +20,7 @@ index 5e65ba3..345dfc5 100644 -//! let mut command = Command::new("python"); -//! command.arg("-c").arg("import time; time.sleep(1000000000)"); +//! let mut command = Command::new("sleep"); -+//! command.arg("infinity")"); ++//! command.arg("infinity"); //! let shared_child = SharedChild::spawn(&mut command).unwrap(); //! let child_arc = Arc::new(shared_child); //!