Skip to content

Commit

Permalink
fix: Lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
OnedgeLee committed Oct 16, 2023
1 parent c290aa9 commit 4a7f9b2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion NineChronicles.Headless.Tests/Common/MockAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ private MockAccount(IAccountState baseState, IAccountDelta delta)
TotalUpdatedFungibles.Keys.ToImmutableHashSet();

public IImmutableDictionary<(Address, Currency), BigInteger> TotalUpdatedFungibles
{ get; private set; }
{
get; private set;
}

/// <inheritdoc/>
[Pure]
Expand Down
2 changes: 1 addition & 1 deletion NineChronicles.Headless.Tests/Common/MockAccountDelta.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NineChronicles.Headless.Tests.Common
namespace NineChronicles.Headless.Tests.Common
{
#nullable enable

Expand Down
2 changes: 1 addition & 1 deletion NineChronicles.Headless.Tests/Common/MockWorldDelta.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace NineChronicles.Headless.Tests.Common
namespace NineChronicles.Headless.Tests.Common
{
using System.Collections.Immutable;
using Libplanet.Action.State;
Expand Down
2 changes: 1 addition & 1 deletion NineChronicles.Headless.Tests/GraphTypes/StateQueryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public async Task Garage(
MockWorld mockWorld = new MockWorld(new MockWorldState(ImmutableDictionary<Address, IAccount>.Empty.Add(
ReservedAddresses.LegacyAccount,
new MockAccount(mockAccountState))));

var queryResult = await ExecuteQueryAsync<StateQuery>(
sb.ToString(),
source: new StateContext(mockWorld, 0L));
Expand Down

0 comments on commit 4a7f9b2

Please sign in to comment.