diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b8e828a6..b322ef42 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,6 +25,8 @@ jobs: exclude: - ruby: 2.7.2 rails: 5.0.7.2 + - ruby: 2.6.6 + rails: 5.0.7.2 - ruby: 2.7.2 rails: 4.2.11 - ruby: 2.6.6 @@ -41,4 +43,4 @@ jobs: - name: Install dependencies run: bundle install --jobs 4 --retry 3 - name: Run tests - run: bundle exec rake test \ No newline at end of file + run: bundle exec rake test diff --git a/lib/jsonapi/error.rb b/lib/jsonapi/error.rb index 41545c13..fc39d93a 100644 --- a/lib/jsonapi/error.rb +++ b/lib/jsonapi/error.rb @@ -15,7 +15,7 @@ def initialize(options = {}) @source = options[:source] @links = options[:links] - @status = Rack::Utils::SYMBOL_TO_STATUS_CODE[options[:status]].to_s + @status = Rack::Utils.status_code(options[:status]).to_s @meta = options[:meta] end