summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2020-08-14 02:15:12 +0200
committerBert Belder <bertbelder@gmail.com>2020-08-18 20:50:52 +0200
commitb308a774e81d7d18dfc2122459632f9ba9ae1eb8 (patch)
treef70c336ddfb662e07cdc35ad45e3ea3c5d786121 /cli/tests/integration_tests.rs
parentb21a7b0fd0969c8697833d549809bdd1c9edc93b (diff)
Fix nightly and Windows-only clippy warnings (#7095)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 76f82df23..206664113 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -3203,6 +3203,8 @@ fn set_raw_should_not_panic_on_no_tty() {
}
#[cfg(windows)]
+// Clippy suggests to remove the `NoStd` prefix from all variants. I disagree.
+#[allow(clippy::enum_variant_names)]
enum WinProcConstraints {
NoStdIn,
NoStdOut,