Index: go/src/infra/monitoring/analyzer/test_failures_test.go |
diff --git a/go/src/infra/monitoring/analyzer/test_failures_test.go b/go/src/infra/monitoring/analyzer/test_failures_test.go |
index 8ab1afd111a722057910d61cbb854f3d7f4f8b47..7a61e37911fd1c69fcb99fb53e57a4bfed9b000b 100644 |
--- a/go/src/infra/monitoring/analyzer/test_failures_test.go |
+++ b/go/src/infra/monitoring/analyzer/test_failures_test.go |
@@ -43,10 +43,10 @@ func TestTestStepFailureAlerts(t *testing.T) { |
}, |
}, |
testResults: &messages.TestResults{ |
- Tests: map[string]messages.TestResult{ |
- "test_a": messages.TestResult{ |
- Expected: "PASS", |
- Actual: "FAIL", |
+ Tests: map[string]interface{}{ |
+ "test_a": map[string]interface{}{ |
+ "expected": "PASS", |
+ "actual": "FAIL", |
}, |
}, |
}, |