Skip to content

Commit

Permalink
Merge pull request #51 from ksperling-apple/analyzer-spelling
Browse files Browse the repository at this point in the history
Fix spelling of "analyzer"
  • Loading branch information
a7ex authored Jan 29, 2025
2 parents 344eeaf + e40cb1a commit 9aa69b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/xcresultparser/XCResultFormatter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public struct XCResultFormatter {
summary += "; Warnings: \(warningCount)"
}
if summaryFields.enabledFields.contains(.analyzerWarnings) {
summary += "; Analizer Warnings: \(analyzerWarningCount)"
summary += "; Analyzer Warnings: \(analyzerWarningCount)"
}
if summaryFields.enabledFields.contains(.tests) {
summary += "; Tests: \(testsCount)"
Expand Down
2 changes: 1 addition & 1 deletion Tests/XcresultparserTests/XcresultparserTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ final class XcresultparserTests: XCTestCase {
}
XCTAssertEqual("", resultParser.documentPrefix(title: "XCResults"))

let expectedSummary = "Errors: 0; Warnings: 3; Analizer Warnings: 0; Tests: 7; Failed: 1; Skipped: 0"
let expectedSummary = "Errors: 0; Warnings: 3; Analyzer Warnings: 0; Tests: 7; Failed: 1; Skipped: 0"
XCTAssertEqual(expectedSummary, resultParser.summary)
XCTAssertEqual("\n---------------------\n", resultParser.divider)

Expand Down

0 comments on commit 9aa69b7

Please sign in to comment.