diff --git a/lib/tasks/notify_and_delete_inactive_users.rake b/lib/tasks/notify_and_delete_inactive_users.rake index 240d034ccf..1a3fe5b65d 100644 --- a/lib/tasks/notify_and_delete_inactive_users.rake +++ b/lib/tasks/notify_and_delete_inactive_users.rake @@ -1,5 +1,5 @@ desc 'Notify inactive users of impending deletion from school, and delete previously notified users' task notify_and_delete_inactive_users: :environment do - InactivityNotificationAndDeletionService.new.execute + Users::InactivityNotificationAndDeletionService.new.execute end