summaryrefslogtreecommitdiffstats
path: root/tests/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.rs')
-rw-r--r--tests/tests.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/tests.rs b/tests/tests.rs
index 34bf08e4..6becfe0f 100644
--- a/tests/tests.rs
+++ b/tests/tests.rs
@@ -800,11 +800,7 @@ clean!(regression_25, "test", ".", |wd: WorkDir, mut cmd: Command| {
// See: https://github.com/BurntSushi/ripgrep/issues/30
clean!(regression_30, "test", ".", |wd: WorkDir, mut cmd: Command| {
- if cfg!(windows) {
- wd.create(".gitignore", "vendor/**\n!vendor\\manifest");
- } else {
- wd.create(".gitignore", "vendor/**\n!vendor/manifest");
- }
+ wd.create(".gitignore", "vendor/**\n!vendor/manifest");
wd.create_dir("vendor");
wd.create("vendor/manifest", "test");