| OLD | NEW |
| 1 package buildbot | 1 package buildbot |
| 2 | 2 |
| 3 // We put this here because _test.go files are sometimes not built. | 3 // We put this here because _test.go files are sometimes not built. |
| 4 var TestCases = []struct { | 4 var TestCases = []struct { |
| 5 Builder string | 5 Builder string |
| 6 Build int | 6 Build int |
| 7 }{ | 7 }{ |
| 8 {"CrWinGoma", 30608}, | 8 {"CrWinGoma", 30608}, |
| 9 {"chromium_presubmit", 426944}, | 9 {"chromium_presubmit", 426944}, |
| 10 {"newline", 1234}, | 10 {"newline", 1234}, |
| 11 {"gerritCL", 1234}, | 11 {"gerritCL", 1234}, |
| 12 {"win_chromium_rel_ng", 246309}, | 12 {"win_chromium_rel_ng", 246309}, |
| 13 } | 13 } |
| OLD | NEW |