Skip to content

Commit 21c4ffb

Browse files
committed
Fix wrong argument being used in auto-signin UI tests
1 parent 20423d0 commit 21c4ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WordPress/Classes/System/WordPressAppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ extension WordPressAppDelegate {
857857
}
858858

859859
let service = WordPressComSyncService()
860-
service.syncWPCom(authToken: "valid_token", isJetpackLogin: true, onSuccess: { account in
860+
service.syncWPCom(authToken: "valid_token", isJetpackLogin: false, onSuccess: { account in
861861
if let blog = try? BlogQuery().hostname(containing: wpComSiteAddress).blog(in: ContextManager.shared.mainContext) {
862862
self.windowManager.showUI(for: blog)
863863
} else {

0 commit comments

Comments
 (0)