Skip to content

Commit 1076931

Browse files
Update comments
1 parent 72fa52e commit 1076931

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/Common/TestUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public static async Task<TResult> TimeoutAfter<TResult>(this Task<TResult> task,
187187
/// <param name="regex">The regex. This must have a single group match for the specific value being looked for</param>
188188
/// <param name="valueName">The name of the value to output if the match fails</param>
189189
/// <param name="expectedValue">The value expected to be equal to the matched group from the regex</param>
190-
/// <returns></returns>
190+
/// <returns>The event handler</returns>
191191
public static DataReceivedEventHandler CreateOutputReceievedHandler(TaskCompletionSource<bool> taskCompletionSource, string regex, string valueName, string expectedValue)
192192
{
193193
return (object sender, DataReceivedEventArgs e) =>

test/Integration/SqlTriggerBindingIntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ await this.WaitForProductChanges(
7575
[Fact]
7676
public async Task BatchSizeOverrideTriggerTest()
7777
{
78-
// Use enough items for the default batch size to require 4 batches but then
78+
// Use enough items to require 4 batches to be processed but then
7979
// set the batch size to the same value so they can all be processed in one
8080
// batch. The test will only wait for ~1 batch worth of time so will timeout
8181
// if the batch size isn't actually changed

0 commit comments

Comments
 (0)