Index: Tools/GardeningServer/ui/test/ct-failure-stream-tests.html |
diff --git a/Tools/GardeningServer/ui/test/ct-failure-stream-tests.html b/Tools/GardeningServer/ui/test/ct-failure-stream-tests.html |
index a34aefe321b1d2009275e24ce13474ef60cac05c..d14ed05aab545a73b93ce22eba6dfe6da5801a6a 100644 |
--- a/Tools/GardeningServer/ui/test/ct-failure-stream-tests.html |
+++ b/Tools/GardeningServer/ui/test/ct-failure-stream-tests.html |
@@ -26,7 +26,7 @@ describe('ct-failure-stream', function() { |
// ct-failure-stream will give these values to ct-commit-data, |
// which will hit the network unless we figure out how to mock |
// out ct-commit-data in a better way. |
- stream.groups = [new CTFailureGroup('a', []), new CTFailureGroup('b', [])]; |
+ stream.groups = [new CTFailureGroup('a', [], []), new CTFailureGroup('b', [], [])]; |
stream.category = 'default'; |
setTimeout(function() { |
var cards = stream.shadowRoot.querySelectorAll('ct-failure-card'); |
@@ -40,7 +40,7 @@ describe('ct-failure-stream', function() { |
describe('category', function() { |
it('should only show failure groups for the specified category', function(done) { |
- stream.groups = [new CTFailureGroup('a', []), new CTFailureGroup('b', [], {snoozeTime: Date.now() + 1000 * 1000})]; |
+ stream.groups = [new CTFailureGroup('a', [], []), new CTFailureGroup('b', [], [], {snoozeTime: Date.now() + 1000 * 1000})]; |
stream.category = 'snoozed'; |
setTimeout(function() { |
var cards = stream.shadowRoot.querySelectorAll('ct-failure-card'); |