Public Access
This commit is contained in:
@@ -984,7 +984,8 @@ public sealed class RecordingCoordinatorTests
|
||||
SpeakerIdentification = new SpeakerIdentificationOptions
|
||||
{
|
||||
InitialDelay = TimeSpan.Zero,
|
||||
Interval = TimeSpan.FromMilliseconds(10)
|
||||
Interval = TimeSpan.FromMilliseconds(10),
|
||||
MinimumSampleSpeechDuration = TimeSpan.Zero
|
||||
}
|
||||
}),
|
||||
NullLogger<MeetingRecordingCoordinator>.Instance,
|
||||
@@ -1031,7 +1032,8 @@ public sealed class RecordingCoordinatorTests
|
||||
SpeakerIdentification = new SpeakerIdentificationOptions
|
||||
{
|
||||
InitialDelay = TimeSpan.Zero,
|
||||
Interval = TimeSpan.FromMilliseconds(10)
|
||||
Interval = TimeSpan.FromMilliseconds(10),
|
||||
MinimumSampleSpeechDuration = TimeSpan.Zero
|
||||
}
|
||||
}),
|
||||
NullLogger<MeetingRecordingCoordinator>.Instance,
|
||||
@@ -1066,7 +1068,8 @@ public sealed class RecordingCoordinatorTests
|
||||
SpeakerIdentification = new SpeakerIdentificationOptions
|
||||
{
|
||||
InitialDelay = TimeSpan.Zero,
|
||||
Interval = TimeSpan.FromMilliseconds(20)
|
||||
Interval = TimeSpan.FromMilliseconds(20),
|
||||
MinimumSampleSpeechDuration = TimeSpan.Zero
|
||||
}
|
||||
}),
|
||||
NullLogger<MeetingRecordingCoordinator>.Instance,
|
||||
@@ -1103,7 +1106,8 @@ public sealed class RecordingCoordinatorTests
|
||||
SpeakerIdentification = new SpeakerIdentificationOptions
|
||||
{
|
||||
InitialDelay = TimeSpan.Zero,
|
||||
Interval = TimeSpan.FromMilliseconds(20)
|
||||
Interval = TimeSpan.FromMilliseconds(20),
|
||||
MinimumSampleSpeechDuration = TimeSpan.Zero
|
||||
}
|
||||
}),
|
||||
NullLogger<MeetingRecordingCoordinator>.Instance,
|
||||
@@ -1672,6 +1676,7 @@ public sealed class RecordingCoordinatorTests
|
||||
values["MeetingAssistant:SpeakerIdentification:Enabled"] = "true";
|
||||
values["MeetingAssistant:SpeakerIdentification:InitialDelay"] = "00:00:00";
|
||||
values["MeetingAssistant:SpeakerIdentification:Interval"] = "00:00:00.050";
|
||||
values["MeetingAssistant:SpeakerIdentification:MinimumSampleSpeechDuration"] = "00:00:00";
|
||||
}
|
||||
|
||||
var configuration = new ConfigurationBuilder()
|
||||
@@ -1708,7 +1713,7 @@ public sealed class RecordingCoordinatorTests
|
||||
var deadline = DateTimeOffset.UtcNow.AddSeconds(5);
|
||||
while (DateTimeOffset.UtcNow < deadline)
|
||||
{
|
||||
if (segments.Any(segment => segment.Text?.Contains(text, StringComparison.Ordinal) == true))
|
||||
if (segments.Any(segment => segment?.Text?.Contains(text, StringComparison.Ordinal) == true))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user