Skip to content

Commit 8fffe26

Browse files
authored
Fix crashlytics objc test files typos (#13749)
1 parent e3bd19f commit 8fffe26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Crashlytics/UnitTests/FIRCLSMetricKitManagerTests.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ - (FIRCLSMockMXCPUExceptionDiagnostic *)createCPUExceptionDiagnostic {
191191
applicationVersion:@"1"];
192192
}
193193

194-
- (FIRCLSMockMXDiskWriteExceptionDiagnostic *)createDiskWriteExcptionDiagnostic {
194+
- (FIRCLSMockMXDiskWriteExceptionDiagnostic *)createDiskWriteExceptionDiagnostic {
195195
return [[FIRCLSMockMXDiskWriteExceptionDiagnostic alloc]
196196
initWithCallStackTree:[self createMockCallStackTree]
197197
totalWritesCaused:[[NSMeasurement alloc] initWithDoubleValue:24.0
@@ -227,7 +227,7 @@ - (FIRCLSMockMXDiagnosticPayload *)createCPUExceptionDiagnosticPayload {
227227

228228
- (FIRCLSMockMXDiagnosticPayload *)createDiskWriteExceptionDiagnosticPayload {
229229
NSDictionary *diagnostics =
230-
@{@"diskWriteExceptionDiagnostics" : @[ [self createDiskWriteExcptionDiagnostic] ]};
230+
@{@"diskWriteExceptionDiagnostics" : @[ [self createDiskWriteExceptionDiagnostic] ]};
231231
return [[FIRCLSMockMXDiagnosticPayload alloc] initWithDiagnostics:diagnostics
232232
timeStampBegin:self.beginTime
233233
timeStampEnd:self.endTime
@@ -239,7 +239,7 @@ - (FIRCLSMockMXDiagnosticPayload *)createFullDiagnosticPayload {
239239
@"crashes" : @[ [self createCrashDiagnostic] ],
240240
@"hangs" : @[ [self createHangDiagnostic] ],
241241
@"cpuExceptionDiagnostics" : @[ [self createCPUExceptionDiagnostic] ],
242-
@"diskWriteExceptionDiagnostics" : @[ [self createDiskWriteExcptionDiagnostic] ]
242+
@"diskWriteExceptionDiagnostics" : @[ [self createDiskWriteExceptionDiagnostic] ]
243243
};
244244
return [[FIRCLSMockMXDiagnosticPayload alloc] initWithDiagnostics:diagnostics
245245
timeStampBegin:self.beginTime

0 commit comments

Comments
 (0)