Skip to content

Commit

Permalink
test: set class to not be sealed to allow mocking
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinWilkinson committed Oct 29, 2024
1 parent 3ec8903 commit 3710028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Velaptor/Graphics/RenderBatchReactable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ namespace Velaptor.Graphics;
/// <inheritdoc cref="IRenderBatchReactable{TBatchItem}"/>
/// <typeparam name="TBatchItem">The type of batch item to send.</typeparam>
[SuppressMessage("ReSharper", "RedundantTypeDeclarationBody", Justification = "Intentional")]
internal sealed class RenderBatchReactable<TBatchItem> : PushReactable<Memory<RenderItem<TBatchItem>>>, IRenderBatchReactable<TBatchItem>
internal class RenderBatchReactable<TBatchItem> : PushReactable<Memory<RenderItem<TBatchItem>>>, IRenderBatchReactable<TBatchItem>
{
}

0 comments on commit 3710028

Please sign in to comment.