Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ public async Task 재화가_업데이트되지_않는다()
{
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<BadRequestException>();
await _playerResourceRepository.DidNotReceive().UpdateAsync(Arg.Any<PlayerResource>());
}
}
Expand Down