From 188e757bad04bf6f2f836a94efc619cb51bc8d52 Mon Sep 17 00:00:00 2001 From: Jaehong Kang Date: Mon, 9 May 2022 20:22:25 +0900 Subject: [PATCH] Remove trailing commas from TypeNameRuleTests.testTypeNameWithLeadingUnderscoreWithPrivate --- Tests/SwiftLintFrameworkTests/TypeNameRuleTests.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/SwiftLintFrameworkTests/TypeNameRuleTests.swift b/Tests/SwiftLintFrameworkTests/TypeNameRuleTests.swift index 6130482e2d9..5a7b81f0862 100644 --- a/Tests/SwiftLintFrameworkTests/TypeNameRuleTests.swift +++ b/Tests/SwiftLintFrameworkTests/TypeNameRuleTests.swift @@ -54,10 +54,10 @@ class TypeNameRuleTests: XCTestCase { let description = baseDescription .with(nonTriggeringExamples: [ - Example("private class _MyPrivateClass {}", excludeFromDocumentation: true), + Example("private class _MyPrivateClass {}", excludeFromDocumentation: true) ]) .with(triggeringExamples: [ - Example("private class ↓`_` {}", excludeFromDocumentation: true), + Example("private class ↓`_` {}", excludeFromDocumentation: true) ]) verifyRule(description)