using another fn for file deletion

This commit is contained in:
Alexander Strizhakov 2020-04-06 14:27:20 +03:00
parent b59ac37b2c
commit a43e055916
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381
1 changed files with 4 additions and 4 deletions

View File

@ -157,8 +157,8 @@ defmodule Mix.Tasks.Pleroma.EmojiTest do
assert File.exists?(files_json)
on_exit(fn ->
File.rm_rf!(pack_json)
File.rm_rf!(files_json)
File.rm!(pack_json)
File.rm!(files_json)
end)
end
@ -218,8 +218,8 @@ defmodule Mix.Tasks.Pleroma.EmojiTest do
assert captured =~ "#{pack_json} has been updated with the pack2 pack"
on_exit(fn ->
File.rm_rf!(pack_json)
File.rm_rf!(files_json)
File.rm!(pack_json)
File.rm!(files_json)
end)
end
end