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
488
488
parsedOptions |= [boxedValue intValue ];
489
489
}
490
490
OCMStub ([mock showWithReportType: reportType options: parsedOptions]);
491
- [self .instabugBridge showBugReportingWithReportTypeAndOptions: reportType :options];
491
+ [self .instabugBridge showBugReportingWithReportTypeAndOptions: reportType options : options];
492
492
493
493
XCTestExpectation *expectation = [self expectationWithDescription: @" Test ME PLX" ];
494
494
Original file line number Diff line number Diff line change 111
111
112
112
- (void )setReportTypes : (NSArray *)types ;
113
113
114
- - (void )showBugReportingWithReportTypeAndOptions : (IBGBugReportingReportType)type
115
- : (NSArray *)options ;
114
+ - (void )showBugReportingWithReportTypeAndOptions : (IBGBugReportingReportType)type options : (NSArray *)options ;
116
115
117
116
- (void )setAutoScreenRecordingEnabled : (BOOL )enabled ;
118
117
Original file line number Diff line number Diff line change @@ -690,7 +690,7 @@ - (dispatch_queue_t)methodQueue {
690
690
IBGBugReporting.enabled = isEnabled;
691
691
}
692
692
693
- RCT_EXPORT_METHOD (showBugReportingWithReportTypeAndOptions:(IBGBugReportingReportType) type: (NSArray *) options) {
693
+ RCT_EXPORT_METHOD (showBugReportingWithReportTypeAndOptions:(IBGBugReportingReportType)type options: (NSArray *) options) {
694
694
[[NSRunLoop mainRunLoop ] performBlock: ^{
695
695
IBGBugReportingOption parsedOptions = 0 ;
696
696
for (NSNumber *boxedValue in options) {
You can’t perform that action at this time.
0 commit comments