Skip to content

Commit 726cd57

Browse files
Fix compile error
1 parent 7fcb33d commit 726cd57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ProjectTemplates/test/GrpcTemplateTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public async Task GrpcTemplate()
4444
using (var clientProcess = Project.StartBuiltClientAsync(serverProcess))
4545
{
4646
// Wait for the client to do its thing
47-
await Task.Delay(100)
47+
await Task.Delay(100);
4848
Assert.False(
4949
clientProcess.Process.HasExited,
5050
ErrorMessages.GetFailedProcessMessageOrEmpty("Run built client", Project, clientProcess.Process));
@@ -60,7 +60,7 @@ await Task.Delay(100)
6060
using (var clientProcess = Project.StartPublishedClientAsync())
6161
{
6262
// Wait for the client to do its thing
63-
await Task.Delay(100)
63+
await Task.Delay(100);
6464
Assert.False(
6565
clientProcess.Process.HasExited,
6666
ErrorMessages.GetFailedProcessMessageOrEmpty("Run built client", Project, clientProcess.Process));

0 commit comments

Comments
 (0)