This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
shell/platform/darwin/ios/framework/Source Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -104,10 +104,14 @@ - (void)testFLTAssetsURLFromBundle {
104104 id mockBundle = OCMClassMock ([NSBundle class ]);
105105 id mockMainBundle = OCMPartialMock ([NSBundle mainBundle ]);
106106 NSURL * mockAssetsURL = OCMClassMock ([NSURL class ]);
107- OCMStub ([mockBundle URLForResource: @" Frameworks/App.framework/flutter_assets" withExtension: nil ]).andReturn (nil );
107+ OCMStub ([mockBundle URLForResource: @" Frameworks/App.framework/flutter_assets"
108+ withExtension: nil ])
109+ .andReturn (nil );
108110 OCMStub ([mockAssetsURL checkResourceIsReachableAndReturnError: NULL ]).andReturn (NO );
109111 OCMStub ([mockAssetsURL path ]).andReturn (@" path/to/foo/assets" );
110- OCMStub ([mockMainBundle URLForResource: @" Frameworks/App.framework/flutter_assets" withExtension: nil ]).andReturn (mockAssetsURL);
112+ OCMStub ([mockMainBundle URLForResource: @" Frameworks/App.framework/flutter_assets"
113+ withExtension: nil ])
114+ .andReturn (mockAssetsURL);
111115 NSURL * url = FLTAssetsURLFromBundle (mockBundle);
112116 XCTAssertEqualObjects (url.path , @" path/to/foo/assets" );
113117 }
You can’t perform that action at this time.
0 commit comments