Skip to content

Commit

Permalink
Fix Minitest handling of kwargs after update past 5.16.0
Browse files Browse the repository at this point in the history
Issue was introduced in

minitest/minitest@6fecff9

and hack workaround was introduced in

minitest/minitest@b8ddc4f

I *think* that changing the API make this work w/o the workaround would
require a breaking change so we can leave that for later.
  • Loading branch information
hibachrach committed Sep 11, 2022
1 parent e17cf6e commit ee464a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ruby.yml
Expand Up @@ -26,8 +26,12 @@ jobs:
- rails_5.2_sprockets_3
- rails_5.2_sprockets_4
runs-on: ubuntu-latest
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
env:
# $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
# Workaround b/c upgrading Minitest broke some mocking expectations
# having to do with automatic kwarg splatting
MT_KWARGS_HACK: 1
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down

0 comments on commit ee464a1

Please sign in to comment.