From a8d8c8b3a6bb4d524abaeb24c1513db470b4fba4 Mon Sep 17 00:00:00 2001 From: ncuillery Date: Wed, 14 May 2014 09:29:44 +0200 Subject: [PATCH] test($rootScope): voluntary failure for PR #7445. Travis build should be failed with this commit (meaning that the test case in failure is relevant for the bug seen in #7445). MUSTN'T BE MERGE --- test/ng/rootScopeSpec.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js index 3613869c0741..6794f01d0f54 100644 --- a/test/ng/rootScopeSpec.js +++ b/test/ng/rootScopeSpec.js @@ -1700,6 +1700,7 @@ describe('Scope', function() { it('should receive event object', inject(function($rootScope) { var scope = $rootScope, child = scope.$new(), + grandChild = child.$new(), event; child.$on('fooEvent', function(e) {