diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/files-tests.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lisp/files-tests.el b/test/lisp/files-tests.el index efafb5583ac..b9fbeb8a4e0 100644 --- a/test/lisp/files-tests.el +++ b/test/lisp/files-tests.el | |||
| @@ -1261,11 +1261,11 @@ works as expected if the default directory is quoted." | |||
| 1261 | (a/b (concat dirname "a/b"))) | 1261 | (a/b (concat dirname "a/b"))) |
| 1262 | (write-region "" nil file) | 1262 | (write-region "" nil file) |
| 1263 | (should-error (make-directory "/")) | 1263 | (should-error (make-directory "/")) |
| 1264 | (should-not (make-directory "/" t)) | 1264 | (should (make-directory "/" t)) |
| 1265 | (should-error (make-directory dir)) | 1265 | (should-error (make-directory dir)) |
| 1266 | (should-not (make-directory dir t)) | 1266 | (should (make-directory dir t)) |
| 1267 | (should-error (make-directory dirname)) | 1267 | (should-error (make-directory dirname)) |
| 1268 | (should-not (make-directory dirname t)) | 1268 | (should (make-directory dirname t)) |
| 1269 | (should-error (make-directory file)) | 1269 | (should-error (make-directory file)) |
| 1270 | (should-error (make-directory file t)) | 1270 | (should-error (make-directory file t)) |
| 1271 | (should-not (make-directory subdir1)) | 1271 | (should-not (make-directory subdir1)) |