Skip to content

Commit a08368f

Browse files
Make rubocop happy
1 parent 9d57c34 commit a08368f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spec/bson/vector_spec.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# frozen_string_literal: true
2+
23
# Copyright (C) 2025-present MongoDB Inc.
34
#
45
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,7 +18,7 @@
1718

1819
describe BSON::Vector do
1920
it 'behaves like an Array' do
20-
expect(described_class.new([ 1, 2, 3 ], :int8)).to be_a_kind_of(Array)
21+
expect(described_class.new([ 1, 2, 3 ], :int8)).to be_a(Array)
2122
end
2223

2324
describe '#initialize' do

0 commit comments

Comments
 (0)