Skip to content

Commit bd5756d

Browse files
committed
fix tests for elixir 1.13 compatibility
1 parent 84a0b86 commit bd5756d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/support/case.ex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ defmodule Sentry.Case do
1616
case start_supervised(Sentry.Transport.RateLimiter) do
1717
{:ok, _pid} -> :ok
1818
{:error, {:already_started, _pid}} -> :ok
19+
# Elixir 1.13 compatibility
20+
{:error, {{:already_started, _pid}, _}} -> :ok
1921
end
2022

2123
on_exit(fn ->

0 commit comments

Comments
 (0)