| Index: milo/appengine/frontend/main_test.go
|
| diff --git a/milo/appengine/frontend/main_test.go b/milo/appengine/frontend/main_test.go
|
| index 9c298fbba71145f9e4a70f154772833961503442..a81d3117121f498ffd98b8d9fa36d43b7fff3d6c 100644
|
| --- a/milo/appengine/frontend/main_test.go
|
| +++ b/milo/appengine/frontend/main_test.go
|
| @@ -79,7 +79,7 @@ type analyticsSettings struct {
|
|
|
| func TestPages(t *testing.T) {
|
| fixZeroDurationRE := regexp.MustCompile(`(Running for:|waiting) 0s?`)
|
| - _ = func(text string) string {
|
| + fixZeroDuration := func(text string) string {
|
| return fixZeroDurationRE.ReplaceAllLiteralString(text, "[ZERO DURATION]")
|
| }
|
|
|
| @@ -107,10 +107,9 @@ func TestPages(t *testing.T) {
|
| if *generate {
|
| mustWrite(fname, buf)
|
| } else {
|
| - _, err := load(fname)
|
| + localBuf, err := load(fname)
|
| So(err, ShouldBeNil)
|
| - // TODO(hinoka): Fix and re-enable. crbug/731562.
|
| - // So(fixZeroDuration(string(buf)), ShouldEqual, fixZeroDuration(string(localBuf)))
|
| + So(fixZeroDuration(string(buf)), ShouldEqual, fixZeroDuration(string(localBuf)))
|
| }
|
| })
|
| }
|
|
|