From f8923aa283f530a41e0a6126508ba5f66a7c9ff8 Mon Sep 17 00:00:00 2001 From: David Jay Date: Wed, 7 Dec 2016 22:22:23 -0500 Subject: [PATCH] Updating tests. --- tests/client/coral-framework/store/itemActions.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/client/coral-framework/store/itemActions.spec.js b/tests/client/coral-framework/store/itemActions.spec.js index ee5951dd6..8bf65fa33 100644 --- a/tests/client/coral-framework/store/itemActions.spec.js +++ b/tests/client/coral-framework/store/itemActions.spec.js @@ -155,7 +155,7 @@ describe('itemActions', () => { describe('postAction', () => { it ('should post an action', () => { fetchMock.post('*', {id: '456'}); - return actions.postAction('abc', 'flag', '123', 'comments', 'Comment smells funny')(store.dispatch) + return actions.postAction('abc', 'flag', 'comments', 'Comment smells funny')(store.dispatch) .then(response => { expect(fetchMock.calls().matched[0][0]).to.equal('/api/v1/comments/abc/actions'); expect(response).to.deep.equal({id:'456'});