Skip to content

Commit

Permalink
fix: remove warnings of undefined modules when testing code generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ahamez committed Oct 4, 2024
1 parent a0f51f1 commit 400c8a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/code_generation_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ defmodule Protox.CodeGenerationTest do
[
{:protox, path: "#{File.cwd!()}"},
{:dialyxir, "~> 1.0", only: [:test, :dev], runtime: false},
{:credo, "~> 1.4", only: [:test, :dev], runtime: false}
{:credo, "~> 1.4", only: [:test, :dev], runtime: false},
{:jason, "~> 1.2", optional: true},
{:poison, "~> 4.0 or ~> 5.0 or ~> 6.0", optional: true}
]
end
end
Expand Down

0 comments on commit 400c8a7

Please sign in to comment.