diff options
author | Sean Allred <code@seanallred.com> | 2014-11-02 13:04:54 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-02 13:04:54 -0500 |
commit | 73a1b008211cc2ca548c30ff99b2950c99e53325 (patch) | |
tree | 29fd543f8816eef95776a87de53dde498d5ccc1c /test | |
parent | 800b3af0e5a4cbfb385b2f8d925f5884bc71baad (diff) |
Let-bind stack-cache-directory instead
There are several variables and functions that depend on it; simply
binding the filter-cache file isn't enough.
Diffstat (limited to 'test')
-rw-r--r-- | test/tests.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.el b/test/tests.el index bd0cb67..9e1cff1 100644 --- a/test/tests.el +++ b/test/tests.el @@ -80,7 +80,7 @@ '(1 2 3))))) (ert-deftest test-filters () - (let ((stack-filter-cache-file (make-temp-file "stack-test-"))) + (let ((stack-cache-directory (make-temp-file "stack-test" t))) (should-error (stack-filter-store "names must be symbols" "this is a filter")) ;; basic use |