Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test failures
  • Loading branch information
jmagman committed Oct 25, 2024
commit 8ac52ff7878c7de24c42473cca5dfed5576db2e6
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ - (void)testBlankVideoBugWithEncryptedVideoStreamAndInvertedAspectRatioBugForSom
}

- (void)testSeekToWhilePausedStartsDisplayLinkTemporarily {
XCTFail(@"Failing to test xcresult upload");
NSObject<FlutterTextureRegistry> *mockTextureRegistry =
OCMProtocolMock(@protocol(FlutterTextureRegistry));
NSObject<FlutterPluginRegistrar> *registrar =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ void main() {
await controller.play();
await tester.pumpAndSettle(_playDuration);

expect(await controller.position, greaterThan(Duration.zero));
// test xcresult upload
expect(await controller.position, lessThan(Duration.zero));
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ @implementation AppDelegate

- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Test analyzer warning still works.
BOOL x = @"true";
[GeneratedPluginRegistrant registerWithRegistry:self];
// Override point for customization after application launch.
return [super application:application didFinishLaunchingWithOptions:launchOptions];
Expand Down