diff options
| author | Shyam Seshadri | 2010-08-10 13:42:50 -0700 |
|---|---|---|
| committer | Shyam Seshadri | 2010-08-10 13:42:50 -0700 |
| commit | c4c96c5c69846fb8eccc278c1eb20f94d69a2b99 (patch) | |
| tree | 05659c1d32ede31dadde8717139461aad389f18d /test/scenario/DSLSpec.js | |
| parent | 86c2ef87d5069f0836079e171c0f33efcf2b5d24 (diff) | |
| download | angular.js-c4c96c5c69846fb8eccc278c1eb20f94d69a2b99.tar.bz2 | |
Fix test breakage in Chrome. Chrome JQuery doesn't like malformed table html apparently
Diffstat (limited to 'test/scenario/DSLSpec.js')
| -rw-r--r-- | test/scenario/DSLSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scenario/DSLSpec.js b/test/scenario/DSLSpec.js index 374f49c8..62de9d6c 100644 --- a/test/scenario/DSLSpec.js +++ b/test/scenario/DSLSpec.js @@ -85,14 +85,14 @@ describe("DSL", function() { var html; beforeEach(function() { html = '<div class="container">' + - '<table class="reports-detail">' + + '<div class="reports-detail">' + '<span class="desc">Description : ' + '<span ng:bind="report.description">Details...</span>' + '</span>' + '<span>Date created: ' + '<span ng:bind="report.creationDate">01/01/01</span>' + '</span>' + - '</table>' + + '</div>' + '</div>'; }); it('should find elements on the page and provide jquery api', function() { |
