Skip to content

Commit

Permalink
Fixed backwards slash.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwagener committed Aug 12, 2015
1 parent ada2d77 commit ba1afa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apivore.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)

Gem::Specification.new do |s|
s.name = 'apivore'
s.version = '1.3.0'
s.version = '1.3.1'
s.date = '2015-07-31'
s.summary = "Tests your API against its Swagger 2.0 spec"
s.description = "Tests your rails API using its Swagger description of end-points, models, and query parameters."
Expand Down
2 changes: 1 addition & 1 deletion lib/apivore/validator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def check_request_path(swagger_checker)
" #{method} #{path}"
elsif method == "get" && swagger_checker.fragment(path, method, expected_response_code).nil?
errors << "Swagger doc: #{swagger_checker.swagger_path} missing"\
" response model for get request with #{path} for code"/
" response model for get request with #{path} for code"\
" #{expected_response_code}"
end
end
Expand Down

0 comments on commit ba1afa8

Please sign in to comment.