Skip to content

Commit 8c4a487

Browse files
committed
fix method name in CommaTests.swift
1 parent a0bbe05 commit 8c4a487

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/SwiftFormatTests/PrettyPrint/CommaTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ final class CommaTests: PrettyPrintTestCase {
105105
assertPrettyPrintEqual(input: input, expected: expected, linelength: 20, configuration: configuration)
106106
}
107107

108-
func testArraySingleLineCommasPresentDisabled() {
108+
func testArraySingleLineCommasPresentEnabled() {
109109
let input =
110110
"""
111111
let MyCollection = [1, 2, 3,]
@@ -124,7 +124,7 @@ final class CommaTests: PrettyPrintTestCase {
124124
assertPrettyPrintEqual(input: input, expected: expected, linelength: 40, configuration: configuration)
125125
}
126126

127-
func testArraySingleLineCommasPresentEnabled() {
127+
func testArraySingleLineCommasPresentDisabled() {
128128
let input =
129129
"""
130130
let MyCollection = [1, 2, 3,]

0 commit comments

Comments
 (0)