From f72fff7b428dc45dc8959c0cdad5d5c936951f2e Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Wed, 21 Nov 2018 10:49:12 -0600 Subject: [PATCH] augment UCommand with `#[derive(Debug)]` to allow improved test diagnostics --- tests/common/util.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/common/util.rs b/tests/common/util.rs index 38b92fa24..1467e5135 100755 --- a/tests/common/util.rs +++ b/tests/common/util.rs @@ -447,6 +447,7 @@ impl TestScenario { /// 2. it tracks arguments provided so that in test cases which may provide variations of an arg in loops /// the test failure can display the exact call which preceded an assertion failure. /// 3. it provides convenience construction arguments to set the Command working directory and/or clear its environment. +#[derive(Debug)] pub struct UCommand { pub raw: Command, comm_string: String,