aboutsummaryrefslogtreecommitdiffstats
path: root/test/AngularSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/AngularSpec.js')
-rw-r--r--test/AngularSpec.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/AngularSpec.js b/test/AngularSpec.js
index 7e070761..92949b66 100644
--- a/test/AngularSpec.js
+++ b/test/AngularSpec.js
@@ -512,7 +512,8 @@ describe('angular', function() {
describe('startingElementHtml', function(){
it('should show starting element tag only', function(){
- expect(startingTag('<ng-abc x="2"><div>text</div></ng-abc>')).toEqual('<ng-abc x="2">');
+ expect(startingTag('<ng-abc x="2A"><div>text</div></ng-abc>')).
+ toBeOneOf('<ng-abc x="2A">', '<NG-ABC x="2A">');
});
});