Updated error message in object detector tests

This commit is contained in:
Prianka Liz Kariat 2023-05-04 01:01:47 +05:30
parent 7e53fdc1b3
commit 4558486459

View File

@ -459,15 +459,15 @@ static NSString *const kLiveStreamTestsDictExpectationKey = @"expectation";
options.runningMode = runningModesToTest[i];
options.objectDetectorDelegate = self;
[self assertCreateObjectDetectorWithOptions:options
[self
assertCreateObjectDetectorWithOptions:options
failsWithExpectedError:
[NSError errorWithDomain:kExpectedErrorDomain
code:MPPTasksErrorCodeInvalidArgumentError
userInfo:@{
NSLocalizedDescriptionKey :
@"The vision task is in image or video mode. "
@"The delegate must not be"
@"set in the task's options."
@"The vision task is in image or video mode. The "
@"delegate must not be set in the task's options."
}]];
}
}