未验证 提交 b0377846 编写于 作者: L Layomi Akinrinade 提交者: GitHub

Fix WriteLargeJsonToStreamWithoutFlushing test (#34914)

上级 ae227d51
......@@ -752,7 +752,7 @@ public void WriteLargeJsonToStreamWithoutFlushing()
Assert.Equal(1_050_097_521, writer.BytesPending);
// Next write forces a grow beyond 2 GB
Assert.Throws<OverflowException>(() => writer.WriteStringValue(text3));
Assert.Throws<OutOfMemoryException>(() => writer.WriteStringValue(text3));
Assert.Equal(1_050_097_521, writer.BytesPending);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册