Skip to content

Commit 037aa43

Browse files
Update tests - Fix #37
1 parent ed4c78e commit 037aa43

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

spec/jira.spec.coffee

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ describe "Node Jira Tests", ->
66
makeUrl = (path, altBase) ->
77
base = 'rest/api/2/'
88
base = 'rest/greenhopper/2/' if altBase?
9-
url.format
9+
decodeURIComponent(
10+
url.format
1011
protocol: 'http:'
1112
hostname: 'localhost'
1213
auth: 'test:test'
1314
port: 80
14-
pathname: "#{base}#{path}"
15+
pathname: "#{base}#{path}")
1516

1617

1718
beforeEach ->

0 commit comments

Comments
 (0)