From a6289fc76bfabf67af65719057c0778a18d14cb8 Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Fri, 20 Oct 2023 13:08:51 +0200 Subject: [PATCH] Fix ThrowsIfNoHgFolderIsFound exception type --- backend/Testing/LexCore/Services/HgServiceTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Testing/LexCore/Services/HgServiceTests.cs b/backend/Testing/LexCore/Services/HgServiceTests.cs index dcb26f869..633552746 100644 --- a/backend/Testing/LexCore/Services/HgServiceTests.cs +++ b/backend/Testing/LexCore/Services/HgServiceTests.cs @@ -119,6 +119,6 @@ public async Task ThrowsIfNoHgFolderIsFound() stream.Position = 0; var act = () => _hgService.FinishReset(code, stream); - act.ShouldThrow(); + act.ShouldThrow(); } }