Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit f18ef54

Browse files
committed
autoformat
1 parent 301eba3 commit f18ef54

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

testing/scenario_app/ios/Scenarios/ScenariosUITests/GoldenTestManager.m

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ - (void)checkGoldenForTest:(XCTestCase*)test {
5353
[test addAttachment:attachment];
5454
// Instead of XCTFail because that definition changed between Xcode 11 and 12 whereas this impl
5555
// is stable.
56-
_XCTPrimitiveFail(test, @"This test will fail - no golden named %@ found. "
57-
@"Follow the steps in the README to add a new golden.",
58-
_goldenImage.goldenName);
56+
_XCTPrimitiveFail(test,
57+
@"This test will fail - no golden named %@ found. "
58+
@"Follow the steps in the README to add a new golden.",
59+
_goldenImage.goldenName);
5960
}
6061

6162
if (![_goldenImage compareGoldenToImage:screenshot.image]) {
@@ -64,9 +65,10 @@ - (void)checkGoldenForTest:(XCTestCase*)test {
6465
screenshotAttachment.lifetime = XCTAttachmentLifetimeKeepAlways;
6566
[test addAttachment:screenshotAttachment];
6667

67-
_XCTPrimitiveFail(test, @"Goldens do not match. Follow the steps in the "
68-
@"README to update golden named %@ if needed.",
69-
_goldenImage.goldenName);
68+
_XCTPrimitiveFail(test,
69+
@"Goldens do not match. Follow the steps in the "
70+
@"README to update golden named %@ if needed.",
71+
_goldenImage.goldenName);
7072
}
7173
}
7274

0 commit comments

Comments
 (0)