diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b73cb49e..396931de4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,9 @@ jobs: fail-fast: false matrix: ruby: - - 3.4.7 - - 3.3.9 + - 4.0.5 + - 3.4.9 + - 3.3.11 steps: - name: Checkout code @@ -46,7 +47,7 @@ jobs: fail-fast: false matrix: ruby: - - 3.4.1 + - 4.0.5 steps: - name: Checkout code diff --git a/test/cases/migration_test_sqlserver.rb b/test/cases/migration_test_sqlserver.rb index e4d713627..888e67d83 100644 --- a/test/cases/migration_test_sqlserver.rb +++ b/test/cases/migration_test_sqlserver.rb @@ -47,7 +47,7 @@ class MigrationTestSQLServer < ActiveRecord::TestCase it "not drop the default constraint if just renaming" do find_default = lambda do - connection.execute_procedure(:sp_helpconstraint, "sst_string_defaults", "nomsg").reverse.find do |row| + connection.execute_procedure(:sp_helpconstraint, "sst_string_defaults", "nomsg").reverse.find do |row| # standard:disable Style/ReverseFind row["constraint_type"] == "DEFAULT on column string_with_pretend_paren_three" end end