diff --git a/app/models/repository.rb b/app/models/repository.rb
index 5f5634aafa206053432c8e52b67027816f066f8e..affd21de92445714bdc51fbb49be6799b76565d9 100644
--- a/app/models/repository.rb
+++ b/app/models/repository.rb
@@ -734,15 +734,15 @@ class Repository
   def update_file(user, path, content, branch:, previous_path:, message:)
     commit_with_hooks(user, branch) do |ref|
       committer = user_to_committer(user)
-      commit_options = {}
-      commit_options[:committer] = committer
-      commit_options[:author] = committer
-      commit_options[:commit] = {
-        message: options[:message],
+      options = {}
+      options[:committer] = committer
+      options[:author] = committer
+      options[:commit] = {
+        message: message,
         branch: ref
       }
 
-      commit_options[:file] = {
+      options[:file] = {
         content: content,
         path: path,
         update: true
@@ -750,9 +750,9 @@ class Repository
 
       if previous_path
         options[:file][:previous_path] = previous_path
-        Gitlab::Git::Blob.rename(raw_repository, commit_options)
+        Gitlab::Git::Blob.rename(raw_repository, options)
       else
-        Gitlab::Git::Blob.commit(raw_repository, commit_options)
+        Gitlab::Git::Blob.commit(raw_repository, options)
       end
     end
   end
diff --git a/app/services/files/update_service.rb b/app/services/files/update_service.rb
index aaac3da935566379a1718d0144b4f087e082d052..8d2b5083179e0ed50c507a355e9067a6d5d05d67 100644
--- a/app/services/files/update_service.rb
+++ b/app/services/files/update_service.rb
@@ -7,8 +7,6 @@ module Files
                              branch: @target_branch,
                              previous_path: @previous_path,
                              message: @commit_message)
-
-
     end
   end
 end