Skip to content

Commit

Permalink
Update slashes in spec and gemspec for awesome_print
Browse files Browse the repository at this point in the history
  • Loading branch information
blackxored committed Jul 9, 2015
1 parent 74097ff commit 15fabb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/exist/api_spec.rb
Expand Up @@ -24,7 +24,7 @@
end

it 'negotiates a token if username and password are provided' do
stub_request(:post, api_root + '/auth/simple-token').to_return(
stub_request(:post, api_root + '/auth/simple-token/').to_return(
body: { token: token }.to_json,
headers: { 'Content-Type' => 'application/json'}
)
Expand All @@ -34,7 +34,7 @@
end

it 'raises an error if fails to login' do
stub_request(:post, api_root + '/auth/simple-token').to_return(
stub_request(:post, api_root + '/auth/simple-token/').to_return(
status: 401
)
expect {
Expand Down

0 comments on commit 15fabb4

Please sign in to comment.