Skip to content

Commit c7e77d6

Browse files
committed
Reordered imports in "run" command for better readability.
1 parent 091d0b5 commit c7e77d6

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

cmd/run.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ import (
44
"context"
55
"time"
66

7-
"github.com/MontFerret/lab/v2/pkg/reporters"
8-
"github.com/MontFerret/lab/v2/pkg/runner"
9-
"github.com/MontFerret/lab/v2/pkg/sources"
10-
"github.com/MontFerret/lab/v2/pkg/testing"
117
"github.com/go-waitfor/waitfor"
128
http "github.com/go-waitfor/waitfor-http"
139
"github.com/pkg/errors"
1410
"github.com/urfave/cli/v3"
11+
12+
"github.com/MontFerret/lab/v2/pkg/reporters"
13+
"github.com/MontFerret/lab/v2/pkg/runner"
14+
"github.com/MontFerret/lab/v2/pkg/sources"
15+
"github.com/MontFerret/lab/v2/pkg/testing"
1516
)
1617

1718
const defaultCDPAddress = "http://127.0.0.1:9222"

0 commit comments

Comments
 (0)