Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/diffs/stats_component.rb')
-rw-r--r--app/components/diffs/stats_component.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/components/diffs/stats_component.rb b/app/components/diffs/stats_component.rb
index 55589c7b015..74788133aa2 100644
--- a/app/components/diffs/stats_component.rb
+++ b/app/components/diffs/stats_component.rb
@@ -28,13 +28,6 @@ module Diffs
Gitlab::Json.dump(diffs_map)
end
- # Disabled undercoverage reports for this method
- # as it returns a false positive on the last line,
- # which is covered in the tests
- #
- # Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/357381
- #
- # :nocov:
def diff_file_path_text(diff_file, max: 60)
path = diff_file.new_path
@@ -42,7 +35,6 @@ module Diffs
"...#{path[-(max - 3)..]}"
end
- # :nocov:
private