Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit 762d8ea

Browse files
committed
Fix typos
1 parent f1baac0 commit 762d8ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

WordPressKitTests/BlazeServiceRemoteTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ final class BlazeServiceRemoteTests: RemoteTestCase, RESTTestable {
8080

8181
// MARK: - Campaigns
8282

83-
func testGetCampagnsSuccess() throws {
83+
func testGetCampaignsSuccess() throws {
8484
// Given
8585
let bundle = Bundle(for: BlazeServiceRemoteTests.self)
8686
let url = try XCTUnwrap(bundle.url(forResource: "blaze-campaigns-search", withExtension: "json"))
@@ -115,7 +115,7 @@ final class BlazeServiceRemoteTests: RemoteTestCase, RESTTestable {
115115
XCTAssertEqual(stats.clicksTotal, 235)
116116
}
117117

118-
func testGetCampagnsSuccessFailureInvalidJSON() throws {
118+
func testGetCampaignsSuccessFailureInvalidJSON() throws {
119119
// Given
120120
let data = #"{ "campaigns": "XXXX" }"#.data(using: .utf8)!
121121
stubRemoteResponse(searchEndpoint, data: data, contentType: .ApplicationJSON)
@@ -132,7 +132,7 @@ final class BlazeServiceRemoteTests: RemoteTestCase, RESTTestable {
132132
}
133133
}
134134

135-
func testGetCampagnsSuccessFailureUnauthorized() throws {
135+
func testGetCampaignsSuccessFailureUnauthorized() throws {
136136
// Given
137137
stubRemoteResponse(searchEndpoint, data: Data(), contentType: .NoContentType, status: 403)
138138

0 commit comments

Comments
 (0)