Skip to content

Commit

Permalink
Removed unnecessary string interpolation.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Oct 15, 2023
1 parent 35b0108 commit 7173d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Magick.NET.Tests/Framework/Coders/TheLabelCoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void ShouldUseTheDensity()
Density = new Density(96, 96, DensityUnit.PixelsPerInch),
};

using var image = new MagickImage($"label:Masai Mara", settings);
using var image = new MagickImage("label:Masai Mara", settings);

Assert.Equal(93, image.Width);
Assert.Equal(21, image.Height);
Expand Down

0 comments on commit 7173d64

Please sign in to comment.