Skip to content

Commit

Permalink
fix: use right import package for compose in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Jan 26, 2023
1 parent 9102e40 commit 4f0ccbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/features/docker_compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
tc "github.com/testcontainers/testcontainers-go"
tc "github.com/testcontainers/testcontainers-go/modules/compose"
)

func TestSomething(t *testing.T) {
Expand Down Expand Up @@ -83,7 +83,7 @@ import (
"testing"

"github.com/stretchr/testify/assert"
tc "github.com/testcontainers/testcontainers-go"
tc "github.com/testcontainers/testcontainers-go/modules/compose"
)

func TestSomethingElse(t *testing.T) {
Expand Down Expand Up @@ -131,7 +131,7 @@ import (
"time"

"github.com/stretchr/testify/assert"
tc "github.com/testcontainers/testcontainers-go"
tc "github.com/testcontainers/testcontainers-go/modules/compose"
"github.com/testcontainers/testcontainers-go/wait"
)

Expand Down

0 comments on commit 4f0ccbc

Please sign in to comment.