diff --git a/VpSharp.IntegrationTests/src/Program.cs b/VpSharp.IntegrationTests/src/Program.cs index c28e85e..1c26974 100644 --- a/VpSharp.IntegrationTests/src/Program.cs +++ b/VpSharp.IntegrationTests/src/Program.cs @@ -1,4 +1,4 @@ -using VpSharp; +using VpSharp; using VpSharp.Commands; using VpSharp.Entities; using VpSharp.IntegrationTests.CommandModules; @@ -28,7 +28,7 @@ var configuration = new VirtualParadiseConfiguration }; using var client = new VirtualParadiseClient(configuration); -CommandsExtension commands = client.UseCommands(new CommandsExtensionConfiguration {Prefixes = new[] {"!"}}); +CommandsExtension commands = client.UseCommands(new CommandsExtensionConfiguration { Prefixes = ["!"] }); commands.RegisterCommands(); Console.WriteLine(@"Connecting to universe"); @@ -38,7 +38,7 @@ Console.WriteLine(@"Logging in"); await client.LoginAsync(); Console.WriteLine(@"Entering world"); -VirtualParadiseWorld world = await client.EnterAsync("Mutation"); +VirtualParadiseWorld world = await client.EnterAsync("Blizzard"); Console.WriteLine(@"Entered world!"); VirtualParadiseAvatar avatar = client.CurrentAvatar!; diff --git a/VpSharp.Tests/VpSharp.Tests.csproj b/VpSharp.Tests/VpSharp.Tests.csproj index 167b240..eb0b41e 100644 --- a/VpSharp.Tests/VpSharp.Tests.csproj +++ b/VpSharp.Tests/VpSharp.Tests.csproj @@ -12,10 +12,10 @@ - - - - + + + + diff --git a/VpSharp.Tests/src/CoordinateTests.cs b/VpSharp.Tests/src/CoordinateTests.cs index a7d55a8..ae96068 100644 --- a/VpSharp.Tests/src/CoordinateTests.cs +++ b/VpSharp.Tests/src/CoordinateTests.cs @@ -70,7 +70,7 @@ internal sealed class CoordinateTests if (string.IsNullOrWhiteSpace(world)) { - Assert.IsTrue(string.IsNullOrWhiteSpace(coordinates.World)); + Assert.That(string.IsNullOrWhiteSpace(coordinates.World)); } else { diff --git a/VpSharp/VpSharp.csproj b/VpSharp/VpSharp.csproj index 02f9d0e..843fe17 100644 --- a/VpSharp/VpSharp.csproj +++ b/VpSharp/VpSharp.csproj @@ -21,10 +21,10 @@ - - - - + + + +