We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e3c06b commit 73b64cbCopy full SHA for 73b64cb
lib/mix/test/mix/local_test.exs
@@ -1,7 +1,7 @@
1
Code.require_file "../test_helper.exs", __DIR__
2
3
defmodule Mix.LocalTest do
4
- use MixTest.Case, async: true
+ use MixTest.Case
5
6
# openssl rsa -in elixirest.pem -pubout > elixirest.pub
7
@public_key """
@@ -69,7 +69,8 @@ defmodule Mix.LocalTest do
69
setup_all do
70
File.mkdir_p!(Mix.PublicKey.public_keys_path)
71
72
- Path.join(Mix.PublicKey.public_keys_path, "test_key.pub")
+ Mix.PublicKey.public_keys_path
73
+ |> Path.join("test_key.pub")
74
|> File.write!(@public_key)
75
end
76
0 commit comments