Skip to content

Commit

Permalink
Merge pull request #226 from SchoolKeep/ruby-3-2
Browse files Browse the repository at this point in the history
Fix failing tests on Ruby >=3.1
  • Loading branch information
yogeshjain999 authored Jan 17, 2023
2 parents 4d16485 + 0f21fa6 commit b22a20d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [2.7, '3.0', '3.1']
ruby: [2.7, '3.0', '3.1', '3.2']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion test/integration/ssl_server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

name = "/C=US/ST=SomeState/L=SomeCity/O=Organization/OU=Unit/CN=localhost"
ca = OpenSSL::X509::Name.parse(name)
key = OpenSSL::PKey::RSA.new(1024)
key = OpenSSL::PKey::RSA.new(2048)
crt = OpenSSL::X509::Certificate.new
crt.version = 2
crt.serial = 1
Expand Down

0 comments on commit b22a20d

Please sign in to comment.