From 2b4dd62327b324ef71118fc87c0add991deb901d Mon Sep 17 00:00:00 2001 From: Jeremy Kuhne Date: Sat, 20 Jul 2024 10:01:28 -0700 Subject: [PATCH] Add dispose call to test --- src/thirtytwo_tests/Win32/Graphics/Imaging/ComponentInfoTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/thirtytwo_tests/Win32/Graphics/Imaging/ComponentInfoTests.cs b/src/thirtytwo_tests/Win32/Graphics/Imaging/ComponentInfoTests.cs index a25af4a..44793de 100644 --- a/src/thirtytwo_tests/Win32/Graphics/Imaging/ComponentInfoTests.cs +++ b/src/thirtytwo_tests/Win32/Graphics/Imaging/ComponentInfoTests.cs @@ -13,6 +13,7 @@ public void EnumerateDecoders() { Assert.NotNull(info); Assert.NotNull(info.FriendlyName); + info.Dispose(); } } }