diff --git a/Sources/mas/Errors/MASError.swift b/Sources/mas/Errors/MASError.swift index 3b9816a..f247fe3 100644 --- a/Sources/mas/Errors/MASError.swift +++ b/Sources/mas/Errors/MASError.swift @@ -85,7 +85,7 @@ extension MASError: CustomStringConvertible { case .searchFailed: return "Search failed" case .noSearchResultsFound: - return "No results found" + return "No apps found" case .unknownAppID(let appID): return "Unknown app ID \(appID)" case .noVendorWebsite: diff --git a/Tests/masTests/Errors/MASErrorTestCase.swift b/Tests/masTests/Errors/MASErrorTestCase.swift index 027a196..3a115b3 100644 --- a/Tests/masTests/Errors/MASErrorTestCase.swift +++ b/Tests/masTests/Errors/MASErrorTestCase.swift @@ -100,7 +100,7 @@ class MASErrorTestCase: XCTestCase { func testNoSearchResultsFound() { error = .noSearchResultsFound - XCTAssertEqual(error.description, "No results found") + XCTAssertEqual(error.description, "No apps found") } func testNoVendorWebsite() {