Skip to content

Commit 932a877

Browse files
committed
format
1 parent 93e5f64 commit 932a877

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Assets/Tests/InputSystem/APIVerificationTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ private static string FilterIgnoredChanges(string line)
759759
.Replace("uint.MinValue", "0");
760760
// Normalize hex literals (0xFF -> 255).
761761
line = s_HexLiteralRegex.Replace(line,
762-
m => Convert.ToUInt64(m.Groups[1].Value, 16).ToString());
762+
m => Convert.ToUInt64(m.Groups[1].Value, 16).ToString());
763763
// Normalize bitwise shift expressions (1 << 8 -> 256).
764764
line = s_ShiftExprRegex.Replace(line,
765765
m => (ulong.Parse(m.Groups[1].Value) << int.Parse(m.Groups[2].Value)).ToString());
@@ -799,7 +799,7 @@ private static string FilterIgnoredChanges(string line)
799799

800800
++pos; // Move past the closing ']'.
801801

802-
// The attribute must be followed by a space.
802+
// The attribute must be followed by a space.
803803
// If it is the last character there is nothing else to strip, so out.
804804
if (pos >= line.Length || line[pos] != ' ')
805805
return line;

0 commit comments

Comments
 (0)