diff --git a/spec/javascripts/app/models/post/interacations_spec.js b/spec/javascripts/app/models/post/interacations_spec.js index 3e0dd5b5f238de2cd8fcedb9b4bb1e12e980b224..c5c4ff83edb61ae6d1b31b1b2d8cf035ede3aee7 100644 --- a/spec/javascripts/app/models/post/interacations_spec.js +++ b/spec/javascripts/app/models/post/interacations_spec.js @@ -42,7 +42,7 @@ describe("app.models.Post.Interactions", function(){ }); describe("reshare", function() { - var ajax_success = { status: 200, responseText: [] }; + var ajax_success = { status: 200, responseText: '{"id": 1}' }; beforeEach(function(){ this.reshare = this.interactions.post.reshare(); @@ -63,7 +63,7 @@ describe("app.models.Post.Interactions", function(){ this.interactions.reshare(); jasmine.Ajax.requests.mostRecent().respondWith(ajax_success); - expect(app.stream.addNow).toHaveBeenCalledWith(this.reshare); + expect(app.stream.addNow).toHaveBeenCalledWith({id: 1}); }); }); });