Skip to content

Commit 3f4aac1

Browse files
authored
Address Elixir 1.16 compilation warnings (#139)
1 parent d59654b commit 3f4aac1

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

config/config.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is responsible for configuring your application
22
# and its dependencies with the aid of the Mix.Config module.
3-
use Mix.Config
3+
import Config
44

55
config :bypass, test_framework: :ex_unit
66

lib/bypass/utils.ex

+5-7
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@ defmodule Bypass.Utils do
33

44
Application.load(:bypass)
55

6-
if Application.get_env(:bypass, :enable_debug_log, false) do
7-
defmacro debug_log(msg) do
8-
quote bind_quoted: [msg: msg] do
6+
defmacro debug_log(msg) do
7+
quote bind_quoted: [msg: msg] do
8+
if Application.get_env(:bypass, :enable_debug_log, false) do
99
require Logger
1010
Logger.debug(["[bypass] ", msg])
11+
else
12+
:ok
1113
end
1214
end
13-
else
14-
defmacro debug_log(_msg) do
15-
:ok
16-
end
1715
end
1816
end

test/bypass_test.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ defmodule BypassTest do
541541
end
542542

543543
test "Bypass.verify_expectations! - with ESpec it will check if the expectations are being met" do
544-
Mix.Config.persist(bypass: [test_framework: :espec])
544+
Application.put_all_env(bypass: [test_framework: :espec])
545545

546546
# Fail: no requests
547547
bypass = prepare_stubs()
@@ -579,7 +579,7 @@ defmodule BypassTest do
579579
Bypass.verify_expectations!(bypass)
580580
end
581581

582-
Mix.Config.persist(bypass: [test_framework: :ex_unit])
582+
Application.put_all_env(bypass: [test_framework: :ex_unit])
583583
end
584584

585585
test "Bypass.open/1 raises when cannot start child" do

0 commit comments

Comments
 (0)