Skip to content

Commit

Permalink
Adjusting the unit test to reflect the change in line endings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Stromberg committed Aug 1, 2016
1 parent 1cea4e9 commit d4ab77c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UnitTests/Compression/BGZipTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void BGZipFile()
Assert.IsType<CompressionException>(exception);
}

const long expectedPosition = 4191;
const long expectedPosition = 270;
Assert.Equal(expectedPosition, observedPosition);

// decompress the data
Expand Down Expand Up @@ -176,7 +176,7 @@ public void BGZipStream()
}
}

Assert.Equal(15038, observedCompressedBuffer.Length);
Assert.Equal(15061, observedCompressedBuffer.Length);
Assert.Equal(_expectedDecompressedBuffer, observedDecompressedBuffer);
}

Expand Down

0 comments on commit d4ab77c

Please sign in to comment.