diff options
| author | Misko Hevery | 2010-10-26 15:35:58 -0700 | 
|---|---|---|
| committer | Misko Hevery | 2010-10-26 16:33:59 -0700 | 
| commit | 9c0225512c63ebfc37e6408cc155d9da1fe682c9 (patch) | |
| tree | 4973f6c57b801c71cbc93d7d993887ff6d3f9558 /test/scenario/dslSpec.js | |
| parent | 40d7e66f408eaaa66efd8d7934ab2eb3324236a1 (diff) | |
| download | angular.js-9c0225512c63ebfc37e6408cc155d9da1fe682c9.tar.bz2 | |
fixes IE related failures, and form submit event handling in ie
Diffstat (limited to 'test/scenario/dslSpec.js')
| -rw-r--r-- | test/scenario/dslSpec.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/test/scenario/dslSpec.js b/test/scenario/dslSpec.js index bbba0b7d..efedeeb5 100644 --- a/test/scenario/dslSpec.js +++ b/test/scenario/dslSpec.js @@ -177,7 +177,7 @@ describe("angular.scenario.dsl", function() {          expect($window.location).not.toEqual('#foo');          doc.append('<a href="#foo"></a>');          $root.dsl.element('a').click(); -        expect($window.location).toEqual('#foo'); +        expect($window.location).toMatch(/#foo$/);        });        it('should count matching elements', function() { | 
