Skip to content

Commit

Permalink
Update unit test expectations
Browse files Browse the repository at this point in the history
  • Loading branch information
piponazo committed Sep 16, 2020
1 parent d736f83 commit 7e5275a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unitTests/test_ImageFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,9 @@ TEST(TheImageFactory, getsExpectedModesForOrfImages)
TEST(TheImageFactory, getsExpectedModesForPsdImages)
{
ASSERT_EQ(amNone, ImageFactory::checkMode(ImageType::psd, mdNone));
ASSERT_EQ(amRead, ImageFactory::checkMode(ImageType::psd, mdExif));
ASSERT_EQ(amRead, ImageFactory::checkMode(ImageType::psd, mdIptc));
ASSERT_EQ(amRead, ImageFactory::checkMode(ImageType::psd, mdXmp));
ASSERT_EQ(amReadWrite, ImageFactory::checkMode(ImageType::psd, mdExif));
ASSERT_EQ(amReadWrite, ImageFactory::checkMode(ImageType::psd, mdIptc));
ASSERT_EQ(amReadWrite, ImageFactory::checkMode(ImageType::psd, mdXmp));
ASSERT_EQ(amNone, ImageFactory::checkMode(ImageType::psd, mdComment));
ASSERT_EQ(amNone, ImageFactory::checkMode(ImageType::psd, mdIccProfile));
}
Expand Down

0 comments on commit 7e5275a

Please sign in to comment.