Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Feb 5, 2025
1 parent 109bd62 commit c05a1b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/hatchet/ci_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@
it "Uses the cache" do
runner = Hatchet::Runner.new("ruby_no_rails_test")
runner.run_ci do |test_run|
expect(test_run.output).to match("Fetching rake")
fetching_rake = "Fetching rake"
expect(test_run.output).to match(fetching_rake)

test_run.run_again

expect(test_run.output).to match("Using rake")
expect(test_run.output).to_not match("Fetching rake")
expect(test_run.output).to_not match(fetching_rake)
end
end
end

0 comments on commit c05a1b5

Please sign in to comment.