Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
fix(gen): remove extra "App" from service spec files
Browse files Browse the repository at this point in the history
Pull request #413 changed the way the names are handled. Forgot to
update these 4 files.
  • Loading branch information
santialbo authored and eddiemonge committed Nov 8, 2013
1 parent 3da4a13 commit 4053f11
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/coffeescript-min/spec/service.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
describe 'Service: <%= classedName %>', () ->

# load the service's module
beforeEach module '<%= scriptAppName %>App'
beforeEach module '<%= scriptAppName %>'

# instantiate service
<%= classedName %> = {}
Expand Down
2 changes: 1 addition & 1 deletion templates/coffeescript/spec/service.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
describe 'Service: <%= classedName %>', () ->

# load the service's module
beforeEach module '<%= scriptAppName %>App'
beforeEach module '<%= scriptAppName %>'

# instantiate service
<%= classedName %> = {}
Expand Down
2 changes: 1 addition & 1 deletion templates/javascript-min/spec/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
describe('Service: <%= classedName %>', function () {

// load the service's module
beforeEach(module('<%= scriptAppName %>App'));
beforeEach(module('<%= scriptAppName %>'));

// instantiate service
var <%= classedName %>;
Expand Down
2 changes: 1 addition & 1 deletion templates/javascript/spec/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
describe('Service: <%= classedName %>', function () {

// load the service's module
beforeEach(module('<%= scriptAppName %>App'));
beforeEach(module('<%= scriptAppName %>'));

// instantiate service
var <%= classedName %>;
Expand Down

0 comments on commit 4053f11

Please sign in to comment.