From 3710028c3c0f36f974d4b26c32396214d216de8c Mon Sep 17 00:00:00 2001 From: CalvinWilkinson Date: Tue, 29 Oct 2024 08:38:13 +0000 Subject: [PATCH] test: set class to not be sealed to allow mocking --- Velaptor/Graphics/RenderBatchReactable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Velaptor/Graphics/RenderBatchReactable.cs b/Velaptor/Graphics/RenderBatchReactable.cs index 4c412f7ab..7ee256ced 100644 --- a/Velaptor/Graphics/RenderBatchReactable.cs +++ b/Velaptor/Graphics/RenderBatchReactable.cs @@ -12,6 +12,6 @@ namespace Velaptor.Graphics; /// /// The type of batch item to send. [SuppressMessage("ReSharper", "RedundantTypeDeclarationBody", Justification = "Intentional")] -internal sealed class RenderBatchReactable : PushReactable>>, IRenderBatchReactable +internal class RenderBatchReactable : PushReactable>>, IRenderBatchReactable { }