Skip to content

Commit

Permalink
Fixed the broken unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ByronMayne committed Sep 12, 2023
1 parent 782756e commit dec0c00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Serilog" Version="3.0.2-dev-02044" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.2.0-dev-00918" />
<PackageReference Include="Serilog" Version="3.0.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Extended.Collections/Generic/RingBuffer{T}.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public bool Remove(T item)

if (m_equalityComparer.Equals(current, item))
{
removalIndex = index;
removalIndex = i;
break;
}

Expand Down

0 comments on commit dec0c00

Please sign in to comment.