From 47838c7d72aed32f5649bde655e342429e1ec00f Mon Sep 17 00:00:00 2001 From: dirk Date: Tue, 16 Aug 2016 21:48:49 +0200 Subject: [PATCH] Changed expected result in unit test. Former-commit-id: 7d6c30d304e1f11c90e350849d4e0e9a727875ad Former-commit-id: 080457cf87dbcd2347c2d499866f63617a250f6b Former-commit-id: 6d5102aad28358e15d088574b6e0eea124a08232 --- .../Profiles/Exif/ExifTagDescriptionAttributeTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageProcessorCore.Tests/Profiles/Exif/ExifTagDescriptionAttributeTests.cs b/tests/ImageProcessorCore.Tests/Profiles/Exif/ExifTagDescriptionAttributeTests.cs index 1efb85377..9d321ba4a 100644 --- a/tests/ImageProcessorCore.Tests/Profiles/Exif/ExifTagDescriptionAttributeTests.cs +++ b/tests/ImageProcessorCore.Tests/Profiles/Exif/ExifTagDescriptionAttributeTests.cs @@ -24,7 +24,7 @@ namespace ImageProcessorCore.Tests exifProfile.SetValue(ExifTag.ResolutionUnit, (ushort)3); value = exifProfile.GetValue(ExifTag.ResolutionUnit); - Assert.Equal("Cm", value.ToString()); + Assert.Equal("Centimeter", value.ToString()); exifProfile.SetValue(ExifTag.ResolutionUnit, (ushort)4); value = exifProfile.GetValue(ExifTag.ResolutionUnit);