Skip to content

Commit b1e48b2

Browse files
committed
use start_supervised! to make sure the process is down when next test starts
1 parent aaba5fb commit b1e48b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/elixir_ls_debugger/test/breakpoint_condition_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule ElixirLS.Debugger.BreakpointConditionTest do
55

66
@name BreakpointConditionTestServer
77
setup do
8-
{:ok, pid} = BreakpointCondition.start_link(name: @name)
8+
pid = start_link_supervised!({BreakpointCondition, name: @name})
99

1010
{:ok,
1111
%{

0 commit comments

Comments
 (0)