diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-20 20:40:02 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-20 20:40:02 -0300 |
commit | a21d952bdd3f7addb8d3586247722944522b1a32 (patch) | |
tree | e89113e1ce48d0c8b9b8aae3b0341df7c36d192c /test/functional/legacy/072_undo_file_spec.lua | |
parent | aed19a7c5f148155672a2f87026d80fbde30a13f (diff) | |
download | rneovim-a21d952bdd3f7addb8d3586247722944522b1a32.tar.gz rneovim-a21d952bdd3f7addb8d3586247722944522b1a32.tar.bz2 rneovim-a21d952bdd3f7addb8d3586247722944522b1a32.zip |
test: Remove temporary files created by 072_undo_file_spec.lua
Diffstat (limited to 'test/functional/legacy/072_undo_file_spec.lua')
-rw-r--r-- | test/functional/legacy/072_undo_file_spec.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/legacy/072_undo_file_spec.lua b/test/functional/legacy/072_undo_file_spec.lua index 0e2cc6a84e..b7f7a65b30 100644 --- a/test/functional/legacy/072_undo_file_spec.lua +++ b/test/functional/legacy/072_undo_file_spec.lua @@ -96,6 +96,8 @@ describe('72', function() end) teardown(function() - os.remove('.Xtestfile.un~') + os.remove('Xtestfile') + os.remove('test.out') + os.remove('.Xtestfile.un~') end) end) |