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 5f419ea commit ea1f72dCopy full SHA for ea1f72d
test/protobuf/protoc/cli_integration_test.exs
@@ -1,9 +1,6 @@
1
defmodule Protobuf.Protoc.CLIIntegrationTest do
2
use ExUnit.Case, async: true
3
4
- # TODO: Remove when we depend on Elixir 1.13+.
5
- import Protobuf.TestHelpers, only: [fetch_docs_from_bytecode: 1], warn: false
6
-
7
alias Protobuf.TestHelpers
8
9
@moduletag :tmp_dir
@@ -104,7 +101,7 @@ defmodule Protobuf.Protoc.CLIIntegrationTest do
104
101
path
105
102
|> Code.compile_file()
106
103
|> Enum.map(fn {mod, bytecode} ->
107
- {mod, fetch_docs_from_bytecode(bytecode)}
+ {mod, TestHelpers.fetch_docs_from_bytecode(bytecode)}
108
end)
109
110
on_exit(fn ->
0 commit comments