From 886495b7b04b372931ce325c253101cf3e88978d Mon Sep 17 00:00:00 2001 From: Fly Dev Date: Mon, 23 Jun 2025 14:12:00 +0000 Subject: [PATCH] fix unused variable warning in Archiver test --- test/aprs/archiver_test.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/aprs/archiver_test.exs b/test/aprs/archiver_test.exs index cab851a..14efa91 100644 --- a/test/aprs/archiver_test.exs +++ b/test/aprs/archiver_test.exs @@ -221,7 +221,7 @@ defmodule Aprs.ArchiverTest do result = Archiver.start_link([]) assert match?({:ok, _pid}, result) or match?({:error, _reason}, result) - if match?({:ok, pid}, result) do + if match?({:ok, _pid}, result) do GenServer.stop(elem(result, 1)) end end