diff --git a/test/ng/directive/ngBindSpec.js b/test/ng/directive/ngBindSpec.js index 628b0092e531..b3c63b346b41 100644 --- a/test/ng/directive/ngBindSpec.js +++ b/test/ng/directive/ngBindSpec.js @@ -45,13 +45,6 @@ describe('ngBind*', function() { $rootScope.$digest(); expect(element.text()).toEqual('-0false'); })); - - - it('should render object as JSON ignore $$', inject(function($rootScope, $compile) { - element = $compile('
{{ {key:"value", $$key:"hide"} }}
')($rootScope); - $rootScope.$digest(); - expect(fromJson(element.text())).toEqual({key:'value'}); - })); });