Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MidAutumnMoon committed Sep 4, 2024
1 parent a4eded4 commit 3dbeca6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ jobs:
rspec:
runs-on: ubuntu-latest

matrix:
ruby: [ 3.3 ]

strategy:
fail-fast: false
matrix:
ruby: [ 3.3 ]

steps:

Expand Down
2 changes: 1 addition & 1 deletion spec/painter_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Expected results should be verified visually.
describe Painter do

subject { Painter.new( "lomn" ) }
subject { Painter.new( "lomn" ).reinbow! }

it "is its own class" do
expect( subject ).to be_a Painter
Expand Down
2 changes: 1 addition & 1 deletion spec/refinement_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

module WithRefine
using Reinbow
def self.blue_hello = "hello".blue.to_s
def self.blue_hello = "hello".blue.reinbow!.to_s
end

module WoRefine
Expand Down

0 comments on commit 3dbeca6

Please sign in to comment.