Skip to content

Commit 61e9330

Browse files
authored
Merge pull request #81 from robbavey/jruby_9_3_4
Remove timezone field from time_array in spec
2 parents f6d3a73 + 980f11f commit 61e9330

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## #unreleased
2+
- Fix: Fix failing test spec on jruby-9.3.4.0 [#81](https://github.com/logstash-plugins/logstash-output-mongodb/pull/81)
3+
14
## 3.1.7
25
- 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)
36

spec/bson/logstash_timestamp_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require_relative "../spec_helper"
33

44
describe ::LogStash::Timestamp do
5-
let(:time_array) { [1918,11,11,11,0,0, "+00:00"] }
5+
let(:time_array) { [1918,11,11,11,0,0] }
66
let(:a_time) { Time.utc(*time_array) }
77
let(:bson_time) { Time.utc(*time_array).to_bson }
88

0 commit comments

Comments
 (0)