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

Commit 53b6f52

Browse files
committed
fix(ngDocSpec): fix broken tests
1 parent 1faafa3 commit 53b6f52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/spec/ngdocSpec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('ngdoc', function() {
3535
var d2 = new Doc('@name a.b.ng-c').parse();
3636
var d3 = new Doc('@name some text: more text').parse();
3737
expect(ngdoc.metadata([d1])[0].shortName).toEqual('c');
38-
expect(ngdoc.metadata([d2])[0].shortName).toEqual('ng:c');
38+
expect(ngdoc.metadata([d2])[0].shortName).toEqual('ng-c');
3939
expect(ngdoc.metadata([d3])[0].shortName).toEqual('more text');
4040
});
4141

0 commit comments

Comments
 (0)