Merge pull request #1287 from jskeet/fix-typo
Fix copy/paste typo in CodedInputStreamTest
This commit is contained in:
commit
584233bd04
1 changed files with 1 additions and 1 deletions
|
@ -589,7 +589,7 @@ namespace Google.Protobuf
|
|||
{
|
||||
var memoryStream = new MemoryStream();
|
||||
Assert.IsTrue(memoryStream.CanRead);
|
||||
using (var cos = new CodedOutputStream(memoryStream, true))
|
||||
using (var cis = new CodedInputStream(memoryStream, true))
|
||||
{
|
||||
}
|
||||
Assert.IsTrue(memoryStream.CanRead); // We left the stream open
|
||||
|
|
Loading…
Add table
Reference in a new issue