Skip to content

Commit 1ccc0b7

Browse files
committed
dont expect a speficic resposne from start_link
1 parent 927c964 commit 1ccc0b7

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ end
3939
3. Add the following to test/test_helper.exs
4040

4141
```elixir
42-
{:ok, _} = Testcontainers.start_link()
42+
Testcontainers.start_link()
4343
```
4444

4545
## Usage

lib/testcontainers.ex

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@ defmodule Testcontainers do
55
The main entry point into Testcontainers.
66
77
This is a GenServer that needs to be started before anything can happen.
8-
9-
Add this line to test/test-helper.exs:
10-
11-
```elixir
12-
{:ok, _} = Testcontainers.start_link()
13-
```
148
"""
159

1610
defstruct []

test/test_helper.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{:ok, _} = Testcontainers.start_link()
1+
Testcontainers.start_link()
22

33
ExUnit.configure(max_cases: System.schedulers_online() * 4)
44
ExUnit.start()

0 commit comments

Comments
 (0)