Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(58)

Side by Side Diff: cmd/jujud/provisioning_test.go

Issue 6490067: state: remove ProposedTools.
Patch Set: state: remove ProposedTools. Created 12 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cmd/jujud/machine.go ('k') | cmd/jujud/upgrade.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 package main 1 package main
2 2
3 import ( 3 import (
4 . "launchpad.net/gocheck" 4 . "launchpad.net/gocheck"
5 "launchpad.net/juju-core/cmd" 5 "launchpad.net/juju-core/cmd"
6 "launchpad.net/juju-core/environs/dummy" 6 "launchpad.net/juju-core/environs/dummy"
7 "launchpad.net/juju-core/juju/testing" 7 "launchpad.net/juju-core/juju/testing"
8 "reflect" 8 "reflect"
9 "time" 9 "time"
10 ) 10 )
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 for { 92 for {
93 select { 93 select {
94 case op := <-opc: 94 case op := <-opc:
95 for _, k := range kinds { 95 for _, k := range kinds {
96 if reflect.TypeOf(op) == reflect.TypeOf(k) { 96 if reflect.TypeOf(op) == reflect.TypeOf(k) {
97 return op 97 return op
98 } 98 }
99 } 99 }
100 c.Logf("discarding unknown event %#v", op) 100 c.Logf("discarding unknown event %#v", op)
101 case <-time.After(2 * time.Second): 101 case <-time.After(2 * time.Second):
102 » » » c.Errorf("time out wating for operation") 102 » » » c.Fatalf("time out wating for operation")
103 } 103 }
104 } 104 }
105 panic("not reached") 105 panic("not reached")
106 } 106 }
OLDNEW
« no previous file with comments | « cmd/jujud/machine.go ('k') | cmd/jujud/upgrade.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b