Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix(ngDocSpec): fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMinar committed Mar 16, 2012
1 parent 1faafa3 commit 53b6f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/spec/ngdocSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('ngdoc', function() {
var d2 = new Doc('@name a.b.ng-c').parse();
var d3 = new Doc('@name some text: more text').parse();
expect(ngdoc.metadata([d1])[0].shortName).toEqual('c');
expect(ngdoc.metadata([d2])[0].shortName).toEqual('ng:c');
expect(ngdoc.metadata([d2])[0].shortName).toEqual('ng-c');
expect(ngdoc.metadata([d3])[0].shortName).toEqual('more text');
});

Expand Down

0 comments on commit 53b6f52

Please sign in to comment.