From 57903eb64df70afef0dfb07a55d3c2ce3faa2a10 Mon Sep 17 00:00:00 2001 From: Braydon Justice Date: Thu, 5 May 2022 01:10:14 -0700 Subject: [PATCH] remove ruby 2.5 from testing as 2.5 is EOL (#507) * remove ruby 2.5 from testing as 2.5 is EOL. #491 * spec update --- .github/workflows/test.yml | 2 +- spec/jobs/bulkrax/importer_job_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1a9b6e62..f2b19bf7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/spec/jobs/bulkrax/importer_job_spec.rb b/spec/jobs/bulkrax/importer_job_spec.rb index f912ff44..ef32e1ed 100644 --- a/spec/jobs/bulkrax/importer_job_spec.rb +++ b/spec/jobs/bulkrax/importer_job_spec.rb @@ -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