Skip to content

Commit

Permalink
rename module
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlah committed Oct 15, 2023
1 parent 41a1417 commit 6c39b1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/docker/api.ex
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Testcontainers.Docker.Api do
alias DockerEngineAPI.Api
alias Testcontainers.Container
alias Testcontainers.ReaperWorker
alias Testcontainers.Connection
alias Testcontainers.Docker.Connection

def run(%Container{} = container_config, options \\ []) do
on_exit = Keyword.get(options, :on_exit, nil)
Expand Down
2 changes: 1 addition & 1 deletion lib/docker/connection.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
defmodule Testcontainers.Connection do
defmodule Testcontainers.Docker.Connection do
alias DockerEngineAPI.Connection

@default_host "unix:///var/run/docker.sock"
Expand Down
2 changes: 1 addition & 1 deletion lib/docker/exec.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Testcontainers.Docker.Exec do
@moduledoc false

alias Testcontainers.Connection
alias Testcontainers.Docker.Connection

def inspect(exec_id, options \\ []) do
conn = Connection.get_connection(options)
Expand Down

0 comments on commit 6c39b1a

Please sign in to comment.