Skip to content

Commit

Permalink
remove ruby 2.5 from testing as 2.5 is EOL (#507)
Browse files Browse the repository at this point in the history
* remove ruby 2.5 from testing as 2.5 is EOL. #491

* spec update
  • Loading branch information
sephirothkod authored May 5, 2022
1 parent aa0cb02 commit 57903eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.5', '2.6', '2.7'] # TODO add 3.0 compat , '3.0']
ruby: ['2.6', '2.7'] # TODO add 3.0 compat , '3.0']
name: Run specs with ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion spec/jobs/bulkrax/importer_job_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module Bulkrax
importer_job.perform(1)

expect(importer.current_run.total_work_entries).to eq(10)
expect(importer.current_run.total_collection_entries).to eq(426)
expect(importer.current_run.total_collection_entries).to eq(427)
end
end

Expand Down

0 comments on commit 57903eb

Please sign in to comment.