Skip to content

Commit 944245b

Browse files
Fix test
Co-Authored-By: SteveSandersonMS <1101362+SteveSandersonMS@users.noreply.github.com>
1 parent dea160a commit 944245b

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

dotnet/test/SessionFsTests.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,13 @@ public async Task Should_Reject_SetProvider_When_Sessions_Already_Exist()
121121
}
122122
finally
123123
{
124-
await client2.ForceStopAsync();
124+
try
125+
{
126+
await client2.ForceStopAsync();
127+
}
128+
catch (IOException)
129+
{
130+
}
125131
}
126132
}
127133
finally

0 commit comments

Comments
 (0)