Skip to content

Commit fa9d875

Browse files
committed
Spelling
1 parent 25c1d2e commit fa9d875

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tests/SentryTests/Integrations/ViewHierarchy/SentryViewHierarchyIntegrationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class SentryViewHierarchyIntegrationTests: XCTestCase {
160160

161161
let ex = expectation(description: "Attachment Added")
162162

163-
testVH.appViewHeirarchyCallback = {
163+
testVH.appViewHierarchyCallback = {
164164
XCTFail("Should not add view hierarchy to app hanging events")
165165
}
166166

Tests/SentryTests/Integrations/ViewHierarchy/TestSentryViewHierarchyProvider.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class TestSentryViewHierarchyProvider: SentryViewHierarchyProvider {
99
var saveFilePathUsed: String?
1010

1111
override func appViewHierarchy() -> Data? {
12-
appViewHeirarchyCallback?()
12+
appViewHierarchyCallback?()
1313
guard let result = self.result
1414
else {
1515
return super.appViewHierarchy()

Tests/SentryTests/SentryViewHierarchyProviderTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ class SentryViewHierarchyProviderTests: XCTestCase {
184184
fixture.uiApplication.windows = [window]
185185

186186
let ex = expectation(description: "Running on Main Thread")
187-
sut.appViewHeirarchyCallback = {
187+
sut.appViewHierarchyCallback = {
188188
ex.fulfill()
189189
XCTAssertTrue(Thread.isMainThread)
190190
}

0 commit comments

Comments
 (0)