forked from AkkomaGang/akkoma
Merge branch 'fix/test-fix' into 'develop'
Fix for test on mac See merge request pleroma/pleroma!3027
This commit is contained in:
commit
151df9fc17
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
# SPDX-License-Identifier: AGPL-3.0-only
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
defmodule Pleroma.EmojiTest do
|
defmodule Pleroma.EmojiTest do
|
||||||
use ExUnit.Case, async: true
|
use ExUnit.Case
|
||||||
alias Pleroma.Emoji
|
alias Pleroma.Emoji
|
||||||
|
|
||||||
describe "is_unicode_emoji?/1" do
|
describe "is_unicode_emoji?/1" do
|
||||||
|
|
|
@ -8,7 +8,7 @@ defmodule Pleroma.UtilsTest do
|
||||||
describe "tmp_dir/1" do
|
describe "tmp_dir/1" do
|
||||||
test "returns unique temporary directory" do
|
test "returns unique temporary directory" do
|
||||||
{:ok, path} = Pleroma.Utils.tmp_dir("emoji")
|
{:ok, path} = Pleroma.Utils.tmp_dir("emoji")
|
||||||
assert path =~ ~r/\/tmp\/emoji-(.*)-#{:os.getpid()}-(.*)/
|
assert path =~ ~r/\/emoji-(.*)-#{:os.getpid()}-(.*)/
|
||||||
File.rm_rf(path)
|
File.rm_rf(path)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue