Skip to content

Commit

Permalink
Fix string quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Feb 11, 2021
1 parent 8d825b5 commit 2ca0d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion activerecord/test/cases/base_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def test_preserving_time_objects_with_time_with_zone_conversion_to_default_timez
def test_time_zone_aware_attribute_with_default_timezone_utc_on_utc_can_be_created
with_env_tz eastern_time_zone do
with_timezone_config aware_attributes: true, default: :utc, zone: "UTC" do
pet = Pet.create(name: 'Bidu')
pet = Pet.create(name: "Bidu")
assert_predicate pet, :persisted?
saved_pet = Pet.find(pet.id)
assert_not_nil saved_pet.created_at
Expand Down

0 comments on commit 2ca0d66

Please sign in to comment.