Skip to content

Commit 972ac07

Browse files
authored
Add Support unit tests for Arrays and remove a ToString overload, #1114 (#1121)
* Some code cleanup in Arrays * WIP Arrays tests for Fill, #1114 * WIP Arrays tests for Equals, #1114 * Finish Arrays tests, remove ToString overload with IFormatProvider, #1114 * PR feedback
1 parent 79e90ce commit 972ac07

3 files changed

Lines changed: 926 additions & 41 deletions

File tree

src/Lucene.Net.Facet/FacetResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public string ToString(IFormatProvider? provider)
117117
sb.Append("dim=");
118118
sb.Append(Dim);
119119
sb.Append(" path=");
120-
sb.Append(Arrays.ToString(Path, provider));
120+
sb.Append(Arrays.ToString(Path));
121121
sb.Append(" value=");
122122
if (TypeOfValue == typeof(int))
123123
{

0 commit comments

Comments
 (0)