1diff --git a/db/fixtures/990_settings.rb b/db/fixtures/990_settings.rb
2deleted file mode 100644
3index 6f21e58813..0000000000
4--- a/db/fixtures/990_settings.rb
5+++ /dev/null
6@@ -1,12 +0,0 @@
7-# frozen_string_literal: true
8-
9-if SiteSetting.notification_email == SiteSetting.defaults[:notification_email]
10- # don't crash for invalid hostname, which is possible in dev
11- begin
12- SiteSetting.notification_email = "noreply@#{Discourse.current_hostname}"
13- rescue Discourse::InvalidParameters
14- if Rails.env.production?
15- STDERR.puts "WARNING: Discourse hostname: #{Discourse.current_hostname} is not a valid domain for emails!"
16- end
17- end
18-end