Skip to content

Commit

Permalink
Merge pull request #59 from clowne-rb/chore/fix-ci
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
ssnickolay authored May 11, 2021
2 parents b355792 + 1140bb1 commit 8c9d4eb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ matrix:
gemfile: gemfiles/railsmaster.gemfile
- rvm: jruby-9.2.8.0
gemfile: gemfiles/jruby.gemfile
- rvm: 3.0
gemfile: Gemfile
- rvm: 2.7
gemfile: Gemfile
- rvm: 2.6.5
Expand Down
2 changes: 1 addition & 1 deletion spec/clowne/declarations/after_clone_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
describe ".new" do
context "with block" do
it "works" do
declaration = described_class.new { 'some block' }
declaration = described_class.new { "some block" }
expect(declaration.block).to be_instance_of(Proc)
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/clowne/declarations/after_persist_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
describe ".new" do
context "with block" do
it "works" do
declaration = described_class.new { 'some block' }
declaration = described_class.new { "some block" }
expect(declaration.block).to be_instance_of(Proc)
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/clowne/declarations/finalize_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
describe ".new" do
context "with block" do
it "works" do
declaration = described_class.new { 'some block' }
declaration = described_class.new { "some block" }
expect(declaration.block).to be_instance_of(Proc)
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/clowne/declarations/init_as_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
describe ".new" do
context "with block" do
it "works" do
declaration = described_class.new { 'some block' }
declaration = described_class.new { "some block" }
expect(declaration.block).to be_instance_of(Proc)
end
end
Expand Down

0 comments on commit 8c9d4eb

Please sign in to comment.