1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2026-01-19 06:09:47 +00:00

style(rubocop): Style/TrailingCommaInArrayLiteral

هذا الالتزام موجود في:
Adam Cooke
2024-03-12 11:45:44 +00:00
الأصل d84152eb5d
التزام 4e13577891
13 ملفات معدلة مع 40 إضافات و25 حذوفات

عرض الملف

@@ -29,7 +29,7 @@ module SMTPClient
have_attributes(ip_address: "2a00::67a0:a::1234"),
have_attributes(ip_address: "2a00::67a0:a::2345"),
have_attributes(ip_address: "1.2.3.4"),
have_attributes(ip_address: "2.3.4.5")
have_attributes(ip_address: "2.3.4.5"),
]
end
end
@@ -43,7 +43,7 @@ module SMTPClient
it "returns ipv4 endpoints" do
expect(server.endpoints).to match [
have_attributes(ip_address: "1.2.3.4"),
have_attributes(ip_address: "2.3.4.5")
have_attributes(ip_address: "2.3.4.5"),
]
end
end
@@ -57,7 +57,7 @@ module SMTPClient
it "returns ipv6 endpoints" do
expect(server.endpoints).to match [
have_attributes(ip_address: "2a00::67a0:a::1234"),
have_attributes(ip_address: "2a00::67a0:a::2345")
have_attributes(ip_address: "2a00::67a0:a::2345"),
]
end
end