Skip to content

Commit 6feca32

Browse files
committed
Split equivalentNames assertion message string in test harness into two lines.
1 parent 848a7f0 commit 6feca32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/SwiftLexicalLookupTest/ExpectedName.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ enum NameExpectation: ExpectedName {
9696
case (.equivalentNames(let actualNames), .equivalentNames(let expectedNames)):
9797
XCTAssert(
9898
actualNames.count == expectedNames.count,
99-
"For marker \(marker), actual composite name count \(actualNames.count) doesn't match expected \(expectedNames.count)"
99+
"For marker \(marker), actual composite name count "
100+
+ "\(actualNames.count) doesn't match expected \(expectedNames.count)"
100101
)
101102

102103
for (actualName, expectedName) in zip(actualNames, expectedNames) {

0 commit comments

Comments
 (0)