From 4a75e7e959ef42656e945b1ab16fd75ec5dacbac Mon Sep 17 00:00:00 2001 From: Kat Date: Thu, 23 Jun 2022 14:44:38 +0100 Subject: [PATCH] lint --- spec/factories/location.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/factories/location.rb b/spec/factories/location.rb index a4ab6fd3d..e4eaf43a0 100644 --- a/spec/factories/location.rb +++ b/spec/factories/location.rb @@ -1,7 +1,7 @@ FactoryBot.define do factory :location do location_code { Faker::Name.initials(number: 10) } - postcode { Faker::Address.postcode.delete(' ') } + postcode { Faker::Address.postcode.delete(" ") } address_line1 { Faker::Address.street_name } address_line2 { Faker::Address.city } type_of_unit { Faker::Lorem.word }