Skip to content

Commit

Permalink
fix: class name not follow nameing rule
Browse files Browse the repository at this point in the history
  • Loading branch information
icyleaf committed Sep 27, 2024
1 parent f2ddae5 commit ae03d02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/tasks/zealot/zealot.rake
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace :zealot do
task smtp: :environment do
puts "SMTP testing ..."

smtp_validator = Zealot::SMTPValidator.new
smtp_validator = Zealot::SmtpValidator.new
if smtp_validator.configured?
success = smtp_validator.verify
unless success
Expand Down
3 changes: 1 addition & 2 deletions lib/zealot/smtp_validator.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# frozen_string_literal: true
require 'pp'

class Zealot::SMTPValidator
class Zealot::SmtpValidator
def initialize
if enabled?
@address = Setting.mailer_options[:address]
Expand Down

0 comments on commit ae03d02

Please sign in to comment.