Skip to content

Commit 2c111c2

Browse files
committed
Merge pull request #57 from gwagener/sinister_bend
Fixed backwards slash.
2 parents ada2d77 + ba1afa8 commit 2c111c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apivore.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
22

33
Gem::Specification.new do |s|
44
s.name = 'apivore'
5-
s.version = '1.3.0'
5+
s.version = '1.3.1'
66
s.date = '2015-07-31'
77
s.summary = "Tests your API against its Swagger 2.0 spec"
88
s.description = "Tests your rails API using its Swagger description of end-points, models, and query parameters."

lib/apivore/validator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def check_request_path(swagger_checker)
7373
" #{method} #{path}"
7474
elsif method == "get" && swagger_checker.fragment(path, method, expected_response_code).nil?
7575
errors << "Swagger doc: #{swagger_checker.swagger_path} missing"\
76-
" response model for get request with #{path} for code"/
76+
" response model for get request with #{path} for code"\
7777
" #{expected_response_code}"
7878
end
7979
end

0 commit comments

Comments
 (0)