Skip to content

Commit

Permalink
rails 5 and 6 use Time
Browse files Browse the repository at this point in the history
  • Loading branch information
p committed Jan 13, 2025
1 parent b0b2f3f commit e3c7612
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions integration/apps/rails-five/spec/integration/di_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
[{"type"=>"String", "value"=>"version"}, {"type"=>"NilClass", "isNull"=>true}],
[{"type"=>"String", "value"=>"data"}, {"type"=>"NilClass", "isNull"=>true}],
[{"type"=>"String", "value"=>"created_at"},
{"type"=>"ActiveSupport::TimeWithZone", "value"=>String}],
{"type"=>"Time", "value"=>String}],
[{"type"=>"String", "value"=>"updated_at"},
{"type"=>"ActiveSupport::TimeWithZone", "value"=>String}]]}],
{"type"=>"Time", "value"=>String}]]}],
[{"type"=>"Symbol", "value"=>"new_record"}, {"type"=>"FalseClass", "value"=>"false"}]]}
)
end
Expand Down
4 changes: 2 additions & 2 deletions integration/apps/rails-six/spec/integration/di_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
[{"type"=>"String", "value"=>"version"}, {"type"=>"NilClass", "isNull"=>true}],
[{"type"=>"String", "value"=>"data"}, {"type"=>"NilClass", "isNull"=>true}],
[{"type"=>"String", "value"=>"created_at"},
{"type"=>"ActiveSupport::TimeWithZone", "value"=>String}],
{"type"=>"Time", "value"=>String}],
[{"type"=>"String", "value"=>"updated_at"},
{"type"=>"ActiveSupport::TimeWithZone", "value"=>String}]]}],
{"type"=>"Time", "value"=>String}]]}],
[{"type"=>"Symbol", "value"=>"new_record"}, {"type"=>"FalseClass", "value"=>"false"}]]}
)
end
Expand Down

0 comments on commit e3c7612

Please sign in to comment.