summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-12-20 07:39:22 +0100
committerCanop <cano.petrole@gmail.com>2020-12-20 07:39:22 +0100
commit5a016dc391014a561babeebe058fbfd5a999699e (patch)
treecbac4ec3cf524beeacdfb78c4fc3127e077f4c01
parentf5bad934317e74c5749e2716e0901c69f560ca42 (diff)
fix missing import in test unitv1.0.9
-rw-r--r--CHANGELOG.md3
-rw-r--r--src/verb/execution_builder.rs5
2 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3b61a1f..e66dc90 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
-### next
+<a name="v1.0.9"></a>
+### v1.0.9 - 2020-12-19
- fix handling on quotes in configured verbs - Fix #316
<a name="v1.0.8"></a>
diff --git a/src/verb/execution_builder.rs b/src/verb/execution_builder.rs
index 1ade61c..e93e929 100644
--- a/src/verb/execution_builder.rs
+++ b/src/verb/execution_builder.rs
@@ -155,7 +155,10 @@ impl<'b> ExecutionStringBuilder<'b> {
#[cfg(test)]
mod execution_builder_test {
- use super::*;
+ use {
+ super::*,
+ crate::app::SelectionType,
+ };
fn check_build_execution_from_sel(
exec_pattern: &str,