diff --git a/Fantasy-server/Fantasy.Test/Dungeon/Service/GoldDungeonServiceTests.cs b/Fantasy-server/Fantasy.Test/Dungeon/Service/GoldDungeonServiceTests.cs index 2c36829..0fd82e3 100644 --- a/Fantasy-server/Fantasy.Test/Dungeon/Service/GoldDungeonServiceTests.cs +++ b/Fantasy-server/Fantasy.Test/Dungeon/Service/GoldDungeonServiceTests.cs @@ -96,8 +96,9 @@ public class CPS_한계를_초과할_때 { var request = new GoldDungeonRequest(Clicks: 1000, DurationSeconds: 30); - try { await _sut.ExecuteAsync(JobType.Warrior, request); } catch { } + var act = () => _sut.ExecuteAsync(JobType.Warrior, request); + await act.Should().ThrowAsync(); await _playerResourceRepository.DidNotReceive().UpdateAsync(Arg.Any()); } }