Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Memory/tests/Base64/Base64TestHelper.cs')
-rw-r--r--src/System.Memory/tests/Base64/Base64TestHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Memory/tests/Base64/Base64TestHelper.cs b/src/System.Memory/tests/Base64/Base64TestHelper.cs
index 1026a97683..1aa8271674 100644
--- a/src/System.Memory/tests/Base64/Base64TestHelper.cs
+++ b/src/System.Memory/tests/Base64/Base64TestHelper.cs
@@ -57,7 +57,7 @@ namespace System.Buffers.Text.Tests
// Workaroudn for indices.Cast<byte>().ToArray() since it throws
// InvalidCastException: Unable to cast object of type 'System.Int32' to type 'System.Byte'
byte[] bytes = new byte[indices.Length];
- for(int i = 0; i < indices.Length; i++)
+ for (int i = 0; i < indices.Length; i++)
{
bytes[i] = (byte)indices[i];
}