Skip to content

Commit

Permalink
test fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioRuiz committed Apr 2, 2019
1 parent 5aea25e commit 9abd85e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nice_http.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'nice_http'
s.version = '1.7.5'
s.version = '1.7.6'
s.summary = "NiceHttp -- simplest library for accessing and testing HTTP and REST resources."
s.description = "NiceHttp -- simplest library for accessing and testing HTTP and REST resources. Manage different hosts on the fly. Easily get the value you want from the JSON strings. Use hashes on your requests."
s.authors = ["Mario Ruiz"]
Expand Down
2 changes: 1 addition & 1 deletion spec/nice_http/nice_http_stats_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
klass.add_stats(:example, :correct, started, Time.now)
expect(klass.stats[:specific][:example].keys).to eq ([:num, :time_elapsed, :correct])
expect(klass.stats[:specific][:example][:time_elapsed].keys).to eq ([:total, :maximum, :minimum, :average])
expect(klass.stats[:specific][:example][:correct].keys).to eq ([:num, :time_elapsed])
expect(klass.stats[:specific][:example][:correct].keys).to eq ([:num, :time_elapsed, :items])
expect(klass.stats[:specific][:example][:correct][:time_elapsed].keys).to eq ([:total, :maximum, :minimum, :average])
end
end
Expand Down

0 comments on commit 9abd85e

Please sign in to comment.