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

Delta Between Two Patch Sets: misc/dashboard/app/build/test.go

Issue 5451079: code review 5451079: gofmt -s misc src (Closed)
Left Patch Set: Created 13 years, 4 months ago
Right Patch Set: diff -r 90b1026581f1 https://go.googlecode.com/hg/ Created 13 years, 4 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:
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | src/cmd/cgo/gcc.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package build 5 package build
6 6
7 // TODO(adg): test authentication 7 // TODO(adg): test authentication
8 8
9 import ( 9 import (
10 "appengine" 10 "appengine"
(...skipping 18 matching lines...) Expand all
29 "Commit", 29 "Commit",
30 "Result", 30 "Result",
31 "Log", 31 "Log",
32 } 32 }
33 33
34 const testPkg = "code.google.com/p/go.more" 34 const testPkg = "code.google.com/p/go.more"
35 35
36 var testPackage = &Package{Name: "Test", Path: testPkg} 36 var testPackage = &Package{Name: "Test", Path: testPkg}
37 37
38 var testPackages = []*Package{ 38 var testPackages = []*Package{
39 » &Package{Name: "Go", Path: ""}, 39 » {Name: "Go", Path: ""},
adg 2011/12/05 02:35:31 Please don't gofix misc/dashboard/app. It needs to
40 testPackage, 40 testPackage,
41 } 41 }
42 42
43 var testRequests = []struct { 43 var testRequests = []struct {
44 path string 44 path string
45 vals url.Values 45 vals url.Values
46 req interface{} 46 req interface{}
47 res interface{} 47 res interface{}
48 }{ 48 }{
49 // Packages 49 // Packages
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 break 185 break
186 } 186 }
187 if err != nil { 187 if err != nil {
188 return err 188 return err
189 } 189 }
190 keys = append(keys, k) 190 keys = append(keys, k)
191 } 191 }
192 } 192 }
193 return datastore.DeleteMulti(c, keys) 193 return datastore.DeleteMulti(c, keys)
194 } 194 }
LEFTRIGHT
« no previous file | src/cmd/cgo/gcc.go » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

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