diff --git a/.env.test b/.env.test deleted file mode 100644 index 6a7a6e08b..000000000 --- a/.env.test +++ /dev/null @@ -1,10 +0,0 @@ -SMTP_PORT=1025 -SMTP_DOMAIN=localhost -SMTP_AUTHENTICATION=plain -SMTP_ADDRESS=localhost -SMTP_ENABLE_TLS=false -NEIGHBORHOOD_TIME_ZONE="Pacific Time (US & Canada)" -WEB_CONCURRENCY=0 -RAILS_MAX_THREADS=1 -SQUARE_ENV="sandbox" -NEIGHBORHOOD_TIME_ZONE="Pacific Time (US & Canada)" diff --git a/app/models/neighborhood/time_zone_mixin.rb b/app/models/neighborhood/time_zone_mixin.rb index 53d7a874b..1a609a3f1 100644 --- a/app/models/neighborhood/time_zone_mixin.rb +++ b/app/models/neighborhood/time_zone_mixin.rb @@ -4,7 +4,6 @@ module TimeZoneMixin # We will probably want to fall-back to the current_person, then browser, then current_space time zones once we # gain access to them. def set_time_zone(&block) - Rails.logger.debug { ENV } Time.use_zone(ENV.fetch("NEIGHBORHOOD_TIME_ZONE"), &block) end