diff options
| author | Jeff Cross | 2013-08-02 09:21:33 -0700 |
|---|---|---|
| committer | Jeff Cross | 2013-08-09 10:19:41 -0700 |
| commit | 0b114fd3e1ce4cc120663222f2dfb34ee5dbda4c (patch) | |
| tree | 1330fc8161d804d6c2ebffe6a76f8e0da3cb5cde /test/testabilityPatch.js | |
| parent | 61cb4085d421060edfb98d7eae0a43b615542843 (diff) | |
| download | angular.js-0b114fd3e1ce4cc120663222f2dfb34ee5dbda4c.tar.bz2 | |
fix(docs-bootstrap): Removed injector from bootstrapped docs samples
This is necessary to make e2e tests pass for implementing #3411. At present, the docs are violating the rule being enforced by double-bootstrap prevention.
Diffstat (limited to 'test/testabilityPatch.js')
| -rw-r--r-- | test/testabilityPatch.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testabilityPatch.js b/test/testabilityPatch.js index 7b4fe0ec..514a5fdb 100644 --- a/test/testabilityPatch.js +++ b/test/testabilityPatch.js @@ -56,7 +56,7 @@ afterEach(function() { forEachSorted(cache, function(expando, key){ angular.forEach(expando.data, function(value, key){ count ++; - if (value.$element) { + if (value && value.$element) { dump('LEAK', key, value.$id, sortedHtml(value.$element)); } else { dump('LEAK', key, angular.toJson(value)); |
