diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-01-06 02:00:55 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-01-06 02:00:55 -0500 |
commit | 562f088b4804ff13eaf63deea2955bdd91614575 (patch) | |
tree | 61ab8e9fb05deeacd8aee3b9d6155d163b596223 | |
parent | a10e67dbfff0df878fc4b3b0f0b690afc1fbfc8d (diff) | |
download | bog-562f088b4804ff13eaf63deea2955bdd91614575.tar.gz |
bog-tests.el: Fix some leftover concats
-rw-r--r-- | bog-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bog-tests.el b/bog-tests.el index c6f87b3..133544b 100644 --- a/bog-tests.el +++ b/bog-tests.el @@ -394,7 +394,7 @@ some text" (should (file-exists-p (expand-file-name (concat citekey ".pdf") bog-file-directory))) (should-not (file-exists-p (expand-file-name - (concat "one.pdf") bog-stage-directory)))))) + "one.pdf" bog-stage-directory)))))) (ert-deftest bog-rename-staged-file-to-citekey-one-file-subdir () (bog-tests--with-temp-dir @@ -414,7 +414,7 @@ some text" (should (file-exists-p (expand-file-name (concat "2010/" citekey ".pdf") bog-file-directory))) (should-not (file-exists-p (expand-file-name - (concat "one.pdf") bog-stage-directory)))))) + "one.pdf" bog-stage-directory)))))) (ert-deftest bog-file-citekeys-multiple-variants () (bog-tests--with-temp-dir |