aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-09-30 20:55:07 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-09-30 20:55:07 +0300
commit496880c7e87165a6343c9ef1e7e9f4fcc4d3a938 (patch)
treef79c3f3a74afab144cee43ce1b223408681b01bc /test
parent428024c969546e7ef4a8e481cf638428260148c4 (diff)
Cleanup a bit the file unignore functionality
Unfortunately the whole ignore/unignore functionality is a bit messy and all of the functions there operated on the current project implicitly, so I'm having a hard time understand how this is supposed to work. Anyways, I'm certain this is a step in the right direction.
Diffstat (limited to 'test')
-rw-r--r--test/projectile-test.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/projectile-test.el b/test/projectile-test.el
index 61ebc2c..06a133b 100644
--- a/test/projectile-test.el
+++ b/test/projectile-test.el
@@ -129,7 +129,7 @@
(ert-deftest projectile-add-unignored-files ()
(noflet ((projectile-get-repo-ignored-files (project vcs) '("unignored-file"
- "path/unignored-file2")))
+ "path/unignored-file2")))
(let ((projectile-globally-unignored-files '("unignored-file")))
(should (equal (projectile-add-unignored '("file"))
'("file" "unignored-file"))))