Skip to content

Commit 78005d3

Browse files
author
Chris Pearce
committed
fix(ng2 blueprint): fix tslint warning in service spec
Add a space character in the inject statement within the blueprint of the service spec to remove tslint whitespace missing warning
1 parent 7be364b commit 78005d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/ng2/blueprints/service/files/src/app/__path__/__name__/__name__.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('<%= classifiedModuleName %> Service', () => {
1818
beforeEachProviders(() => [<%= classifiedModuleName %>]);
1919

2020

21-
it('should ...', inject([<%= classifiedModuleName %>], (service:<%= classifiedModuleName %>) => {
21+
it('should ...', inject([<%= classifiedModuleName %>], (service: <%= classifiedModuleName %>) => {
2222

2323
}));
2424

0 commit comments

Comments
 (0)