diff --git a/spec/shared/i18n/newlines.rb b/spec/shared/i18n/newlines.rb index 60d7fc3baa7..834b7e3733b 100644 --- a/spec/shared/i18n/newlines.rb +++ b/spec/shared/i18n/newlines.rb @@ -24,11 +24,6 @@ def add_string_chevrons(input) if (translation[0] == "\n" && original[0] != "\n") || (translation[0] != "\n" && original[0] == "\n") boundary_errors.store_path(po_file.to_s, add_string_chevrons(original), add_string_chevrons(translation)) end - - # Check that overall amount of newlines in original and translation matches - if original.scan("\n").length != translation.scan("\n").length - overall_errors.store_path(po_file.to_s, add_string_chevrons(original), add_string_chevrons(translation)) - end end end