Code Cleanup

This commit is contained in:
2026-04-05 01:32:52 +02:00
parent 305999e4b7
commit 46a63f9e06
109 changed files with 939 additions and 1125 deletions

View File

@@ -1,5 +1,4 @@
using System.Text.Json;
using RpgRoller.Contracts;
namespace RpgRoller.Tests;
@@ -133,7 +132,7 @@ public sealed class PayloadBudgetTests
[Fact]
public void RolemasterRollDetailPayload_StaysWithinBudget_AndRolemasterMetadataRemainsLazy()
{
using var harness = ServiceTestSupport.CreateHarness([96, 100, 100, 100, 100, 97, 12]);
using var harness = ServiceTestSupport.CreateHarness(96, 100, 100, 100, 100, 97, 12);
var service = harness.Service;
service.Register("gm-rm-detail-budget", "Password123", "GM");
@@ -192,4 +191,4 @@ public sealed class PayloadBudgetTests
}
private static readonly JsonSerializerOptions SerializerOptions = RpgRollerJson.CreateSerializerOptions();
}
}