1919#import " Crashlytics/Crashlytics/Components/FIRCLSGlobals.h"
2020#import " Crashlytics/Crashlytics/Helpers/FIRCLSFile.h"
2121#import " Crashlytics/Crashlytics/Models/FIRCLSInternalReport.h"
22- #import " Crashlytics/Crashlytics/Private/FIRCLSInternalReport_Private.h"
2322#import " Crashlytics/Crashlytics/Private/FIRCrashlyticsReport_Private.h"
2423#import " Crashlytics/Crashlytics/Public/FirebaseCrashlytics/FIRCrashlyticsReport.h"
2524
@@ -245,7 +244,6 @@ - (void)testCustomKeysLimits {
245244 NSString *key = [NSString stringWithFormat: @" key_%i " , i];
246245 [report setCustomValue: @" hello" forKey: key];
247246 }
248- [report.internalReport.operationQueue waitUntilAllOperationsAreFinished ];
249247
250248 NSArray *entriesI = FIRCLSFileReadSections (
251249 [[report.internalReport pathForContentFile: FIRCLSReportUserIncrementalKVFile]
@@ -267,7 +265,6 @@ - (void)testLogsNoExisting {
267265
268266 [report log: @" Normal log without formatting" ];
269267 [report logWithFormat: @" %@ , %@ " , @" First" , @" Second" ];
270- [report.internalReport.operationQueue waitUntilAllOperationsAreFinished ];
271268
272269 NSArray *entries = FIRCLSFileReadSections (
273270 [[report.internalReport pathForContentFile: FIRCLSReportLogAFile] fileSystemRepresentation ],
@@ -286,7 +283,6 @@ - (void)testLogsWithExisting {
286283
287284 [report log: @" Normal log without formatting" ];
288285 [report logWithFormat: @" %@ , %@ " , @" First" , @" Second" ];
289- [report.internalReport.operationQueue waitUntilAllOperationsAreFinished ];
290286
291287 NSArray *entries = FIRCLSFileReadSections (
292288 [[report.internalReport pathForContentFile: FIRCLSReportLogAFile] fileSystemRepresentation ],
@@ -306,7 +302,6 @@ - (void)testLogLimits {
306302 for (int i = 0 ; i < 2000 ; i++) {
307303 [report log: @" 0123456789" ];
308304 }
309- [report.internalReport.operationQueue waitUntilAllOperationsAreFinished ];
310305
311306 unsigned long long sizeA = [[[NSFileManager defaultManager ]
312307 attributesOfItemAtPath: [report.internalReport pathForContentFile: FIRCLSReportLogAFile]
0 commit comments