File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 10
10
expect ( described_class . new . value ) . to eq 0
11
11
end
12
12
13
- it 'raises en exception if the initial value is not a Fixnum' do
13
+ it 'raises an exception if the initial value is not a Fixnum' do
14
14
expect {
15
15
described_class . new ( 10.01 )
16
16
} . to raise_error
@@ -159,13 +159,13 @@ module Concurrent
159
159
160
160
context 'construction' do
161
161
162
- it 'raises en exception if the initial value is too big' do
162
+ it 'raises an exception if the initial value is too big' do
163
163
expect {
164
164
described_class . new ( described_class ::MAX_VALUE + 1 )
165
165
} . to raise_error
166
166
end
167
167
168
- it 'raises en exception if the initial value is too small' do
168
+ it 'raises an exception if the initial value is too small' do
169
169
expect {
170
170
described_class . new ( described_class ::MIN_VALUE - 1 )
171
171
} . to raise_error
You can’t perform that action at this time.
0 commit comments