From 39460e4f0c5d76325e8e21ddbc20aaa8d99de079 Mon Sep 17 00:00:00 2001 From: Poliorcetics Date: Tue, 1 Nov 2022 13:34:11 +0100 Subject: [PATCH] Add missed test attribute in #4316 --- helix-core/src/shellwords.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/helix-core/src/shellwords.rs b/helix-core/src/shellwords.rs index 6edf3cc7e00d..e8c5945b726b 100644 --- a/helix-core/src/shellwords.rs +++ b/helix-core/src/shellwords.rs @@ -244,6 +244,7 @@ mod test { assert_eq!(expected, result); } + #[test] #[cfg(unix)] fn test_escaping_unix() { assert_eq!(escape("foobar"), Cow::Borrowed("foobar"));