diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aaf0bb..7e03cde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## #unreleased + - Fix: Fix failing test spec on jruby-9.3.4.0 [#81](https://github.com/logstash-plugins/logstash-output-mongodb/pull/81) + ## 3.1.7 - Fix "wrong number of arguments" error when shipping events to MongoDB (fixes #60, #64, #65) [#66](https://github.com/logstash-plugins/logstash-output-mongodb/pull/66) diff --git a/spec/bson/logstash_timestamp_spec.rb b/spec/bson/logstash_timestamp_spec.rb index 4418922..a4ffb4c 100644 --- a/spec/bson/logstash_timestamp_spec.rb +++ b/spec/bson/logstash_timestamp_spec.rb @@ -2,7 +2,7 @@ require_relative "../spec_helper" describe ::LogStash::Timestamp do - let(:time_array) { [1918,11,11,11,0,0, "+00:00"] } + let(:time_array) { [1918,11,11,11,0,0] } let(:a_time) { Time.utc(*time_array) } let(:bson_time) { Time.utc(*time_array).to_bson }