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,10 +492,12 @@ internal class StringTests
.ToArray();
for (var i = 0; i < 26; i++)
for (var j = 0; j < 26; j++)
{
string flag = (regionalIndicatorCodes[i] + regionalIndicatorCodes[j]);
Assert.That(flag.IsEmoji());
for (var j = 0; j < 26; j++)
{
string flag = (regionalIndicatorCodes[i] + regionalIndicatorCodes[j]);
Assert.That(flag.IsEmoji());
}
}
}