Browse Source

Don't actually need octal literals

pull/442/head
baarkerlounger 3 years ago
parent
commit
6c980dcd47
  1. 8
      spec/factories/case_log.rb

8
spec/factories/case_log.rb

@ -129,13 +129,13 @@ FactoryBot.define do
ppostc1 { "w3" } ppostc1 { "w3" }
ppostc2 { "w3" } ppostc2 { "w3" }
property_relet { 0 } property_relet { 0 }
mrcdate { Time.utc(2020, 0o5, 0o5, 10, 36, 49) } mrcdate { Time.utc(2020, 5, 0o5, 10, 36, 49) }
mrcday { mrcdate.day } mrcday { mrcdate.day }
mrcmonth { mrcdate.month } mrcmonth { mrcdate.month }
mrcyear { mrcdate.year } mrcyear { mrcdate.year }
incref { 0 } incref { 0 }
sale_completion_date { nil } sale_completion_date { nil }
startdate { Time.utc(2022, 0o2, 0o2, 10, 36, 49) } startdate { Time.utc(2022, 2, 2, 10, 36, 49) }
day { startdate.day } day { startdate.day }
month { startdate.month } month { startdate.month }
year { startdate.year } year { startdate.year }
@ -148,7 +148,7 @@ FactoryBot.define do
la_known { 1 } la_known { 1 }
declaration { 1 } declaration { 1 }
end end
created_at { Time.utc(2022, 0o2, 8, 16, 52, 15) } created_at { Time.utc(2022, 2, 8, 16, 52, 15) }
updated_at { Time.utc(2022, 0o2, 8, 16, 52, 15) } updated_at { Time.utc(2022, 2, 8, 16, 52, 15) }
end end
end end

Loading…
Cancel
Save