1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

Rename 'foo-gzipped' to 'foo.gz'

* test/automated/data/decompress/foo.gz:
Rename from test/automated/data/decompress/foo-gzipped,
to make it easier for other tools to tell that it's compressed.
* test/automated/zlib-tests.el (zlib--decompress):
Adjust to renamed file.
This commit is contained in:
Paul Eggert 2015-05-17 17:16:26 -07:00
parent d7b3166e2b
commit ef5c3eb66b
2 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
(with-temp-buffer
(set-buffer-multibyte nil)
(insert-file-contents-literally
(expand-file-name "foo-gzipped" zlib-tests-data-directory))
(expand-file-name "foo.gz" zlib-tests-data-directory))
(zlib-decompress-region (point-min) (point-max))
(buffer-string))
"foo\n"))))