| Index: milo/appengine/job_source/buildbot/html_test.go
|
| diff --git a/milo/appengine/buildbot/html_test.go b/milo/appengine/job_source/buildbot/html_test.go
|
| similarity index 90%
|
| rename from milo/appengine/buildbot/html_test.go
|
| rename to milo/appengine/job_source/buildbot/html_test.go
|
| index 5fc29750e744f404be7a77163927d577dd73f9b6..4d98224d0b14d1ea1d2a856d972410b6a9b0f346 100644
|
| --- a/milo/appengine/buildbot/html_test.go
|
| +++ b/milo/appengine/job_source/buildbot/html_test.go
|
| @@ -44,7 +44,7 @@ func request(c context.Context, params map[string]string) *router.Context {
|
| func TestHtml(t *testing.T) {
|
| c := memory.UseWithAppID(context.Background(), "dev~luci-milo")
|
| c, _ = testclock.UseTime(c, testclock.TestTimeUTC)
|
| - c = templates.Use(c, common.GetTemplateBundle("../frontend/templates"))
|
| + c = templates.Use(c, common.GetTemplateBundle("../../frontend/templates"))
|
| c = auth.WithState(c, &authtest.FakeState{Identity: identity.AnonymousIdentity})
|
| putDSMasterJSON(c, &buildbotMaster{
|
| Name: "fake",
|
| @@ -77,12 +77,6 @@ func TestHtml(t *testing.T) {
|
| response := rc.Writer.(*httptest.ResponseRecorder)
|
| So(response.Code, ShouldEqual, http.StatusBadRequest)
|
| })
|
| - Convey(`Normal build`, func() {
|
| - rc := request(c, map[string]string{"master": "debug", "builder": "newline", "build": "1234"})
|
| - BuildHandler(rc)
|
| - response := rc.Writer.(*httptest.ResponseRecorder)
|
| - So(response.Code, ShouldEqual, http.StatusOK)
|
| - })
|
| })
|
|
|
| Convey(`Builder pages`, func() {
|
|
|