Skip to content

Commit 9e46886

Browse files
committed
fix unit test
Exclude CalendarInterval and FixedInterval on DateHistogramGroupSourceDescriptor from needing to be nullable. (cherry picked from commit 351953f)
1 parent 3afd3c2 commit 9e46886

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/Tests/CodeStandards/Descriptors.doc.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,8 @@ from m in d.GetMethods()
221221
where !(m.Name == nameof(RankFeatureLogarithmFunctionDescriptor.ScalingFactor) && dt == typeof(RankFeatureLogarithmFunctionDescriptor))
222222
where !(m.Name == nameof(RankFeatureSigmoidFunctionDescriptor.Exponent) && dt == typeof(RankFeatureSigmoidFunctionDescriptor))
223223
where !(m.Name == nameof(RankFeatureSigmoidFunctionDescriptor.Pivot) && dt == typeof(RankFeatureSigmoidFunctionDescriptor))
224+
where !(m.Name == nameof(DateHistogramGroupSourceDescriptor<object>.CalendarInterval) && dt == typeof(DateHistogramGroupSourceDescriptor<>))
225+
where !(m.Name == nameof(DateHistogramGroupSourceDescriptor<object>.FixedInterval) && dt == typeof(DateHistogramGroupSourceDescriptor<>))
224226

225227
select new {m, d, p};
226228

0 commit comments

Comments
 (0)