Skip to content

Commit

Permalink
Added missing using.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Oct 30, 2024
1 parent 75e7a36 commit 1437f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Magick.NET.Tests/MagickImageTests/TheCloneMethod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void ShouldCloneTheImage()
{
using var image = new MagickImage(Files.Builtin.Logo);

var clone = image.Clone();
using var clone = image.Clone();

Assert.Equal(image, clone);
Assert.False(ReferenceEquals(image, clone));
Expand Down

0 comments on commit 1437f59

Please sign in to comment.