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 d76c358 commit 14f0625Copy full SHA for 14f0625
lib/mix/test/test_helper.exs
@@ -61,15 +61,15 @@ defmodule MixTest.Case do
61
end
62
63
def fixture_path(extension) do
64
- Path.join(fixture_path(), extension)
+ Path.join(fixture_path(), extension |> to_string() |> String.replace(":", ""))
65
66
67
def tmp_path do
68
Path.expand("../tmp", __DIR__)
69
70
71
def tmp_path(extension) do
72
- Path.join(tmp_path(), to_string(extension))
+ Path.join(tmp_path(), extension |> to_string() |> String.replace(":", ""))
73
74
75
def purge(modules) do
0 commit comments