File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
InstabugSample/ios/InstabugSampleTests Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -488,7 +488,7 @@ - (void) testgivenArgs$showBugReportingWithReportTypeAndOptions_whenQuery_thenSh
488488 parsedOptions |= [boxedValue intValue ];
489489 }
490490 OCMStub ([mock showWithReportType: reportType options: parsedOptions]);
491- [self .instabugBridge showBugReportingWithReportTypeAndOptions: reportType :options];
491+ [self .instabugBridge showBugReportingWithReportTypeAndOptions: reportType options : options];
492492
493493 XCTestExpectation *expectation = [self expectationWithDescription: @" Test ME PLX" ];
494494
Original file line number Diff line number Diff line change 111111
112112- (void )setReportTypes : (NSArray *)types ;
113113
114- - (void )showBugReportingWithReportTypeAndOptions : (IBGBugReportingReportType)type
115- : (NSArray *)options ;
114+ - (void )showBugReportingWithReportTypeAndOptions : (IBGBugReportingReportType)type options : (NSArray *)options ;
116115
117116- (void )setAutoScreenRecordingEnabled : (BOOL )enabled ;
118117
Original file line number Diff line number Diff line change @@ -690,7 +690,7 @@ - (dispatch_queue_t)methodQueue {
690690 IBGBugReporting.enabled = isEnabled;
691691}
692692
693- RCT_EXPORT_METHOD (showBugReportingWithReportTypeAndOptions:(IBGBugReportingReportType) type: (NSArray *) options) {
693+ RCT_EXPORT_METHOD (showBugReportingWithReportTypeAndOptions:(IBGBugReportingReportType)type options: (NSArray *) options) {
694694 [[NSRunLoop mainRunLoop ] performBlock: ^{
695695 IBGBugReportingOption parsedOptions = 0 ;
696696 for (NSNumber *boxedValue in options) {
You can’t perform that action at this time.
0 commit comments