diff --git a/sdk/objc/unittests/RTCCameraVideoCapturerTests.mm b/sdk/objc/unittests/RTCCameraVideoCapturerTests.mm index 7919878260..6a117a3546 100644 --- a/sdk/objc/unittests/RTCCameraVideoCapturerTests.mm +++ b/sdk/objc/unittests/RTCCameraVideoCapturerTests.mm @@ -186,9 +186,6 @@ CMSampleBufferRef createTestSampleBufferRef() { [self.delegateMock verify]; } -#if 0 -// See crbug.com/1404878 - XCTExpectFailure and XCTSkip are considered failures - - (void)testDelegateCallbackWithValidBufferAndOrientationUpdate { #if TARGET_OS_IPHONE XCTExpectFailure(@"Setting orientation on UIDevice is not supported"); @@ -295,8 +292,6 @@ CMSampleBufferRef createTestSampleBufferRef() { withOrientation:UIDeviceOrientationLandscapeRight]; } -#endif - - (void)setExif:(CMSampleBufferRef)sampleBuffer { rtc::ScopedCFTypeRef exif(CFDictionaryCreateMutable( kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks)); @@ -304,9 +299,6 @@ CMSampleBufferRef createTestSampleBufferRef() { CMSetAttachment(sampleBuffer, CFSTR("{Exif}"), exif.get(), kCMAttachmentMode_ShouldPropagate); } -#if 0 -// See crbug.com/1404878 - XCTExpectFailure and XCTSkip are considered failures - - (void)testRotationFrame { #if TARGET_OS_IPHONE // Mock the AVCaptureConnection as we will get the camera position from the connection's @@ -352,8 +344,6 @@ CMSampleBufferRef createTestSampleBufferRef() { #endif } -#endif - - (void)testImageExif { #if TARGET_OS_IPHONE CMSampleBufferRef sampleBuffer = createTestSampleBufferRef();