style: add braces around parent for loop

This commit is contained in:
Oliver Booth 2023-08-27 13:39:20 +01:00
parent 20f81c5c97
commit dfa0bd4e11
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
1 changed files with 5 additions and 3 deletions

View File

@ -492,12 +492,14 @@ internal class StringTests
.ToArray(); .ToArray();
for (var i = 0; i < 26; i++) for (var i = 0; i < 26; i++)
{
for (var j = 0; j < 26; j++) for (var j = 0; j < 26; j++)
{ {
string flag = (regionalIndicatorCodes[i] + regionalIndicatorCodes[j]); string flag = (regionalIndicatorCodes[i] + regionalIndicatorCodes[j]);
Assert.That(flag.IsEmoji()); Assert.That(flag.IsEmoji());
} }
} }
}
[Test] [Test]
public void IsEmoji_ShouldReturnFalse_GivenNonEmoji() public void IsEmoji_ShouldReturnFalse_GivenNonEmoji()