Skip to content

Commit

Permalink
Namespace Rename and Test Fix
Browse files Browse the repository at this point in the history
Renamed Namespace and Fixed Test
  • Loading branch information
ShackMcBlack committed Jan 22, 2025
1 parent b10defd commit 5755f54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/E2E.Tests/Services/ItemObjects/ItemObjectSyncTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using TaleWorlds.Localization;
using Xunit.Abstractions;

namespace E2E.Tests.Services.CraftingService
namespace E2E.Tests.Services.ItemObjectService
{
public class ItemObjectSyncTest : IDisposable
{
Expand Down Expand Up @@ -60,7 +60,7 @@ public void ServerCreateItemObject_SyncAllClients()
Assert.True(client.ObjectManager.TryGetObject(serverObjectId, out ItemObject clientItemObject));
Assert.Equal(itemObject.Type, clientItemObject.Type);

client.ObjectManager.TryGetId(clientItemObject.Type, out string clientObjectId);
client.ObjectManager.TryGetId(clientItemObject, out string clientObjectId);

Assert.Equal(serverObjectId, clientObjectId);
}
Expand Down

0 comments on commit 5755f54

Please sign in to comment.