diff --git a/apivore.gemspec b/apivore.gemspec index b11e961..3cb9409 100644 --- a/apivore.gemspec +++ b/apivore.gemspec @@ -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." diff --git a/lib/apivore/validator.rb b/lib/apivore/validator.rb index 5362403..a158d44 100644 --- a/lib/apivore/validator.rb +++ b/lib/apivore/validator.rb @@ -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