Skip to content

Commit

Permalink
use start_supervised! to make sure the process is down when next test…
Browse files Browse the repository at this point in the history
… starts
  • Loading branch information
lukaszsamson committed Sep 8, 2023
1 parent aaba5fb commit b1e48b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/elixir_ls_debugger/test/breakpoint_condition_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule ElixirLS.Debugger.BreakpointConditionTest do

@name BreakpointConditionTestServer
setup do
{:ok, pid} = BreakpointCondition.start_link(name: @name)
pid = start_link_supervised!({BreakpointCondition, name: @name})

{:ok,
%{
Expand Down

0 comments on commit b1e48b2

Please sign in to comment.