Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
diff --git a/spec/active_record/oracle_enhanced/type/timestamp_spec.rb b/spec/active_record/oracle_enhanced/type/timestamp_spec.rb index bf2b9f8d..b3bbfd9d 100644 --- a/spec/active_record/oracle_enhanced/type/timestamp_spec.rb +++ b/spec/active_record/oracle_enhanced/type/timestamp_spec.rb @@ -4,6 +4,7 @@ describe "OracleEnhancedAdapter timestamp with timezone support" do include SchemaSpecHelper before(:all) do + skip if ENV["DATABASE_SERVER_AND_CLIENT_VERSION_DO_NOT_MATCH"] == "true" if ENV["DATABASE_VERSION"] == "11.2.0.2" && ENV["ORACLE_HOME"] == "/usr/lib/oracle/21/client64" skip end @@ -35,7 +36,6 @@ describe "OracleEnhancedAdapter timestamp with timezone support" do end describe "/ TIMESTAMP WITH TIME ZONE values from ActiveRecord model" do - skip if ENV["DATABASE_SERVER_AND_CLIENT_VERSION_DO_NOT_MATCH"] == "true" before(:all) do class ::TestEmployee < ActiveRecord::Base end
- Loading branch information