Skip to content

Commit 01c9718

Browse files
committed
RUBY-1021 fix spec typos
1 parent 25a87b9 commit 01c9718

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/mongo/options/redacted_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878

7979
context 'when the method argument is a String' do
8080

81-
it 'returns true when ' do
81+
it 'returns true' do
8282
expect(options.has_key?('name')).to be(true)
8383
end
8484
end
@@ -99,7 +99,7 @@
9999

100100
context 'when the method argument is a String' do
101101

102-
it 'returns true when ' do
102+
it 'returns true' do
103103
expect(options.has_key?('name')).to be(true)
104104
end
105105
end
@@ -120,14 +120,14 @@
120120

121121
context 'when the method argument is a String' do
122122

123-
it 'returns true when ' do
123+
it 'returns false' do
124124
expect(options.has_key?('name')).to be(false)
125125
end
126126
end
127127

128128
context 'when method argument is a Symbol' do
129129

130-
it 'returns true' do
130+
it 'returns false' do
131131
expect(options.has_key?(:name)).to be(false)
132132
end
133133
end

0 commit comments

Comments
 (0)