Skip to content

Commit fafca95

Browse files
committed
do what the comment says
1 parent 31ef743 commit fafca95

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cli/root.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,12 @@ func (r *RootCmd) Core() []*clibase.Cmd {
8787

8888
// Workspace Commands
8989
r.configSSH(),
90-
r.rename(),
91-
r.ping(),
9290
r.create(),
9391
r.deleteWorkspace(),
9492
r.list(),
93+
r.parameters(),
94+
r.ping(),
95+
r.rename(),
9596
r.schedules(),
9697
r.show(),
9798
r.speedtest(),
@@ -100,14 +101,13 @@ func (r *RootCmd) Core() []*clibase.Cmd {
100101
r.stop(),
101102
r.update(),
102103
r.restart(),
103-
r.parameters(),
104104

105105
// Hidden
106-
r.workspaceAgent(),
106+
r.gitssh(),
107107
r.scaletest(),
108108
r.trafficGen(),
109-
r.gitssh(),
110109
r.vscodeSSH(),
110+
r.workspaceAgent(),
111111
}
112112
}
113113

cli/scaletest_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
)
2020

2121
func TestScaleTest(t *testing.T) {
22-
// t.Skipf("This test is flakey. See https://github.com/coder/coder/issues/4942")
22+
t.Skipf("This test is flakey. See https://github.com/coder/coder/issues/4942")
2323
t.Parallel()
2424

2525
// This test does a create-workspaces scale test with --no-cleanup, checks

0 commit comments

Comments
 (0)