Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8067,7 +8067,8 @@ from inputValue in others
from anotherValue in anothers
select new object[] { options, inputValue, anotherValue };

[Fact]
[ConditionalFact(typeof(Environment), nameof(Environment.Is64BitProcess))]
Comment thread
stephentoub marked this conversation as resolved.
Outdated
[OuterLoop]
public static void WritePropertyWithExtremelyLongName_ThrowsArgumentException()
{
var output = new ArrayBufferWriter<byte>();
Expand All @@ -8080,7 +8081,8 @@ public static void WritePropertyWithExtremelyLongName_ThrowsArgumentException()
Assert.Throws<ArgumentException>(() => writer.WritePropertyName(longName.AsSpan()));
}

[Fact]
[ConditionalFact(typeof(Environment), nameof(Environment.Is64BitProcess))]
[OuterLoop]
public static void WriteValueWithExtremelyLongValue_ThrowsArgumentException()
{
var output = new ArrayBufferWriter<byte>();
Expand Down
Loading