From 157fc5fcabaf0402a3812e428fd28f5d1c66e5ed Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Mon, 6 Jan 2020 13:54:23 +1100 Subject: [PATCH] Update ExifProfileTests.cs --- .../ImageSharp.Tests/Metadata/Profiles/Exif/ExifProfileTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifProfileTests.cs b/tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifProfileTests.cs index fbd705957d..9c86d060a6 100644 --- a/tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifProfileTests.cs +++ b/tests/ImageSharp.Tests/Metadata/Profiles/Exif/ExifProfileTests.cs @@ -150,7 +150,7 @@ namespace SixLabors.ImageSharp.Tests image = WriteAndRead(image, imageFormat); IExifValue value2 = image.Metadata.ExifProfile.GetValue(ExifTag.FlashEnergy); - Assert.NotNull(value); + Assert.NotNull(value2); Assert.Equal(new Rational(double.PositiveInfinity), value2.Value); }