From 8176bb64381d4192213e25cd281302e2c4e03c1f Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 6 May 2015 20:42:15 +0200 Subject: [PATCH] Update wolfram api url --- test/wolfram-test.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/wolfram-test.coffee b/test/wolfram-test.coffee index 2be6034..2004a72 100644 --- a/test/wolfram-test.coffee +++ b/test/wolfram-test.coffee @@ -24,7 +24,7 @@ describe 'modulo wolfram', -> it 'dovrebbe reagire correttamente in caso di risposta malformata', (done) -> process.env.WOLFRAM_API_KEY = 'totally-legit-key' nock('http://api.wolframalpha.com') - .get('/v2/query?input=test&primary=true&appid=totally-legit-key') + .get('/v2/query?input=test&appid=totally-legit-key') .reply 400, 'no eenterwebz for u' acc = 0 asjon.receive (e,l) -> @@ -39,7 +39,7 @@ describe 'modulo wolfram', -> it 'dovrebbe parsare correttamente la risposta', (done) -> process.env.WOLFRAM_API_KEY = 'totally-legit-key' nock('http://api.wolframalpha.com') - .get('/v2/query?input=test&primary=true&appid=totally-legit-key') + .get('/v2/query?input=test&appid=totally-legit-key') .replyWithFile 200, __dirname+'/wolfram.xml' acc = 0 asjon.receive (e,l) ->