Skip to content

Commit 449e259

Browse files
generatedunixname1899117597419293meta-codesync[bot]
authored andcommitted
fbsource//xplat/js/react-native-github:TextTestsApple (facebook#55990)
Summary: Pull Request resolved: facebook#55990 Reviewed By: cortinico Differential Revision: D95529600 fbshipit-source-id: 8de24e964e5bbc3c43d47636d8cd509d7308ba58
1 parent 6aa99ad commit 449e259

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/react-native/React/Tests/Text/RCTAttributedTextUtilsTest.mm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ - (void)testSamenessOfResolvedParagraphStyleLtr
144144
NSMutableParagraphStyle *str2ParagraphStyle = [NSMutableParagraphStyle new];
145145
str2ParagraphStyle.alignment = NSTextAlignmentLeft;
146146

147-
// Base writing direction unless overriden by prop is determined by locale, and we assume this test runs in an LTR
147+
// Base writing direction unless overridden by prop is determined by locale, and we assume this test runs in an LTR
148148
// locale.
149149
str2ParagraphStyle.baseWritingDirection = NSWritingDirectionLeftToRight;
150150
[attributedString2 addAttribute:NSParagraphStyleAttributeName value:str2ParagraphStyle range:NSMakeRange(0, 5)];
@@ -173,7 +173,7 @@ - (void)testSamenessOfResolvedParagraphStyleRtl
173173
NSMutableParagraphStyle *str2ParagraphStyle = [NSMutableParagraphStyle new];
174174
str2ParagraphStyle.alignment = NSTextAlignmentRight;
175175

176-
// Base writing direction unless overriden by prop is determined by locale, and we assume this test runs in an LTR
176+
// Base writing direction unless overridden by prop is determined by locale, and we assume this test runs in an LTR
177177
// locale.
178178
str2ParagraphStyle.baseWritingDirection = NSWritingDirectionLeftToRight;
179179
[attributedString2 addAttribute:NSParagraphStyleAttributeName value:str2ParagraphStyle range:NSMakeRange(0, 5)];
@@ -199,7 +199,7 @@ - (void)testSamenessOfResolvedInsensitiveParagraphStyle
199199
NSMutableParagraphStyle *str2ParagraphStyle = [NSMutableParagraphStyle new];
200200
str2ParagraphStyle.alignment = NSTextAlignmentLeft;
201201

202-
// Base writing direction unless overriden by prop is determined by locale, and we assume this test runs in an LTR
202+
// Base writing direction unless overridden by prop is determined by locale, and we assume this test runs in an LTR
203203
// locale.
204204
str2ParagraphStyle.baseWritingDirection = NSWritingDirectionLeftToRight;
205205
[attributedString2 addAttribute:NSParagraphStyleAttributeName value:str2ParagraphStyle range:NSMakeRange(0, 5)];
@@ -230,7 +230,7 @@ - (void)testDifferenceOfResolvedParagraphStyle
230230
NSMutableParagraphStyle *str2ParagraphStyle = [NSMutableParagraphStyle new];
231231
str2ParagraphStyle.alignment = NSTextAlignmentCenter;
232232

233-
// Base writing direction unless overriden by prop is determined by locale, and we assume this test runs in an LTR
233+
// Base writing direction unless overridden by prop is determined by locale, and we assume this test runs in an LTR
234234
// locale.
235235
str2ParagraphStyle.baseWritingDirection = NSWritingDirectionLeftToRight;
236236
[attributedString2 addAttribute:NSParagraphStyleAttributeName value:str2ParagraphStyle range:NSMakeRange(0, 5)];
@@ -256,7 +256,7 @@ - (void)testDifferenceOfMissingParagraphStyle
256256
NSMutableParagraphStyle *str2ParagraphStyle = [NSMutableParagraphStyle new];
257257
str2ParagraphStyle.alignment = NSTextAlignmentLeft;
258258

259-
// Base writing direction unless overriden by prop is determined by locale, and we assume this test runs in an LTR
259+
// Base writing direction unless overridden by prop is determined by locale, and we assume this test runs in an LTR
260260
// locale.
261261
str2ParagraphStyle.baseWritingDirection = NSWritingDirectionLeftToRight;
262262
[attributedString2 addAttribute:NSParagraphStyleAttributeName value:str2ParagraphStyle range:NSMakeRange(0, 5)];

0 commit comments

Comments
 (0)