Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
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
4 changes: 2 additions & 2 deletions Src/FluentAssertions.Json/JTokenDifferentiator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,9 @@ public override string ToString()
DifferenceKind.ExpectedMissesProperty => $"has extra property {Path}",
DifferenceKind.ActualMissesElement => $"misses expected element {Path}",
DifferenceKind.WrongOrder => $"has expected element {Path} in the wrong order",
#pragma warning disable S3928 // Parameter names used into ArgumentException constructors should match an existing one
#pragma warning disable S3928, MA0015 // Parameter names used into ArgumentException constructors should match an existing one
_ => throw new ArgumentOutOfRangeException(),
#pragma warning restore S3928 // Parameter names used into ArgumentException constructors should match an existing one
#pragma warning restore S3928, MA0015 // Parameter names used into ArgumentException constructors should match an existing one
};
}
}
Expand Down