Skip to content

Commit c32de39

Browse files
committed
Fix rebase oddities
1 parent dff23fd commit c32de39

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

rayapp/anyscale_cli_test.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,6 @@ func setupMockAnyscale(t *testing.T, script string) {
2424
os.Setenv("PATH", tmp)
2525
}
2626

27-
func TestNewAnyscaleCLI(t *testing.T) {
28-
cli := NewAnyscaleCLI()
29-
if cli == nil {
30-
t.Fatal("expected non-nil AnyscaleCLI")
31-
}
32-
}
33-
3427
func TestWorkspaceStateString(t *testing.T) {
3528
tests := []struct {
3629
state WorkspaceState

rayapp/test.go

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -157,20 +157,6 @@ func (wtc *WorkspaceTestConfig) Run() (errors []error) {
157157
return errors
158158
}
159159

160-
// state, err := anyscaleCLI.getWorkspaceStatus(wtc.workspaceName)
161-
// if err != nil {
162-
// return fmt.Errorf("get workspace state failed: %w", err)
163-
// }
164-
165-
// for !strings.Contains(state, StateRunning.String()) {
166-
// state, err = anyscaleCLI.getWorkspaceStatus(wtc.workspaceName)
167-
// if err != nil {
168-
// return fmt.Errorf("get workspace status failed: %w, retrying...", err)
169-
// }
170-
// time.Sleep(workspaceStartWaitTime)
171-
// fmt.Println("workspace state: ", state)
172-
// }
173-
174160
// Create temp directory for the zip file
175161
templateZipDir, err := os.MkdirTemp("", "template_zip")
176162
if err != nil {

0 commit comments

Comments
 (0)