Skip to content

Commit ae7fa8a

Browse files
authored
Merge pull request #27 from e2/fix-spelling-mistake
fix spelling mistake
2 parents 22ce00c + 602933f commit ae7fa8a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

spec/lib/ruby_dep/travis_spec.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
context 'with a single ruby version' do
1212
let(:yml) { YAML.dump('rvm' => %w(2.2.4)) }
13-
it 'pessimistically locks with intial supported version' do
13+
it 'pessimistically locks with initial supported version' do
1414
expect(subject.version_constraint).to eq(['~> 2.2', '>= 2.2.4'])
1515
end
1616
end
@@ -30,22 +30,22 @@
3030

3131
context 'with a ruby prefix' do
3232
let(:yml) { YAML.dump('rvm' => %w(ruby-2.2.4)) }
33-
it 'pessimistically locks with intial supported version' do
33+
it 'pessimistically locks with initial supported version' do
3434
expect(subject.version_constraint).to eq(['~> 2.2', '>= 2.2.4'])
3535
end
3636
end
3737

3838
context 'with a jruby prefix' do
3939
context 'with version 9.0.5.0' do
4040
let(:yml) { YAML.dump('rvm' => %w(jruby-9.0.5.0)) }
41-
it 'pessimistically locks with correct intial supported version' do
41+
it 'pessimistically locks with correct initial supported version' do
4242
expect(subject.version_constraint).to eq(['~> 2.2', '>= 2.2.3'])
4343
end
4444
end
4545

4646
context 'with version 9.0.4.0' do
4747
let(:yml) { YAML.dump('rvm' => %w(jruby-9.0.4.0)) }
48-
it 'pessimistically locks with correct intial supported version' do
48+
it 'pessimistically locks with correct initial supported version' do
4949
expect(subject.version_constraint).to eq(['~> 2.2', '>= 2.2.2'])
5050
end
5151
end
@@ -56,7 +56,7 @@
5656
allow(subject).to receive(:abort)
5757
end
5858

59-
it 'pessimistically locks with correct intial supported version' do
59+
it 'pessimistically locks with correct initial supported version' do
6060
expect(subject).to receive(:abort)
6161
.with(/Unrecognized JRuby version: "9.0.6.0"/)
6262
subject.version_constraint
@@ -65,14 +65,14 @@
6565

6666
context 'with version 9.1.0.0' do
6767
let(:yml) { YAML.dump('rvm' => %w(jruby-9.1.0.0)) }
68-
it 'pessimistically locks with correct intial supported version' do
68+
it 'pessimistically locks with correct initial supported version' do
6969
expect(subject.version_constraint).to eq(['~> 2.3', '>= 2.3.0'])
7070
end
7171
end
7272

7373
context 'with version 9.1.2.0' do
7474
let(:yml) { YAML.dump('rvm' => %w(jruby-9.1.2.0)) }
75-
it 'pessimistically locks with correct intial supported version' do
75+
it 'pessimistically locks with correct initial supported version' do
7676
expect(subject.version_constraint).to eq(['~> 2.3', '>= 2.3.0'])
7777
end
7878
end

0 commit comments

Comments
 (0)