Update src/libraries/System.Security.Cryptography.Encoding/tests/Cbor/CborReader.cs
authorEirik Tsarpalis <eirik.tsarpalis@gmail.com>
Fri, 1 May 2020 14:24:51 +0000 (15:24 +0100)
committerGitHub <noreply@github.com>
Fri, 1 May 2020 14:24:51 +0000 (15:24 +0100)
Co-authored-by: Jeremy Barton <jbarton@microsoft.com>
src/libraries/System.Security.Cryptography.Encoding/tests/Cbor/CborReader.cs

index 791b2ee82b8f2a5ba9ed6be457534da0339bd435..3038c9b2a143c0b7f86788385363996cd14a2f0d 100644 (file)
@@ -412,8 +412,8 @@ namespace System.Security.Cryptography.Encoding.Tests.Cbor
         private readonly struct StackFrame
         {
             public StackFrame(CborMajorType type, int frameOffset, int? remainingDataItems,
-                              int? currentKeyOffset, bool currentItemIsKey,
-                              (int Offset, int Length)? previousKeyRange, HashSet<(int Offset, int Length)>? previousKeyRanges)
+                int? currentKeyOffset, bool currentItemIsKey,
+                (int Offset, int Length)? previousKeyRange, HashSet<(int Offset, int Length)>? previousKeyRanges)
             {
                 MajorType = type;
                 FrameOffset = frameOffset;