File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,15 @@ import (
4
4
"context"
5
5
"encoding/json"
6
6
"fmt"
7
+ "io"
8
+ "sync/atomic"
9
+ "time"
10
+
7
11
"github.com/coder/coder/cli/clibase"
8
12
"github.com/coder/coder/codersdk"
9
13
"github.com/coder/coder/cryptorand"
10
14
"github.com/google/uuid"
11
15
"golang.org/x/xerrors"
12
- "io"
13
- "sync/atomic"
14
- "time"
15
16
)
16
17
17
18
func (r * RootCmd ) trafficGen () * clibase.Cmd {
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ package cli_test
3
3
import (
4
4
"bytes"
5
5
"context"
6
+ "strings"
7
+ "testing"
8
+
6
9
"github.com/coder/coder/agent"
7
10
"github.com/coder/coder/cli/clitest"
8
11
"github.com/coder/coder/coderd/coderdtest"
@@ -12,8 +15,6 @@ import (
12
15
"github.com/coder/coder/testutil"
13
16
"github.com/google/uuid"
14
17
"github.com/stretchr/testify/require"
15
- "strings"
16
- "testing"
17
18
)
18
19
19
20
// This test pretends to stand up a workspace and run a no-op traffic generation test.
You can’t perform that action at this time.
0 commit comments