Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ptahmose committed Dec 2, 2023
1 parent 83fb037 commit 3f56a87
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Src/libCZI_UnitTests/test_metadatareading.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,10 @@ TEST(MetadataReading, ScalingInfoExTest)
EXPECT_DOUBLE_EQ(scalingInfo.scaleY, 1.6432520108980473e-07);
EXPECT_FALSE(scalingInfo.IsScaleZValid());

EXPECT_TRUE(scalingInfo.defaultUnitFormatX.compare(L"um") == 0);
EXPECT_TRUE(scalingInfo.defaultUnitFormatY.compare(L"um") == 0);
EXPECT_STREQ(scalingInfo.defaultUnitFormatX.c_str(), L"um");
EXPECT_STREQ(scalingInfo.defaultUnitFormatY.c_str(), L"um");
//EXPECT_TRUE(scalingInfo.defaultUnitFormatX.compare(L"um") == 0);
//EXPECT_TRUE(scalingInfo.defaultUnitFormatY.compare(L"um") == 0);
EXPECT_TRUE(scalingInfo.defaultUnitFormatZ.empty());
}

Expand Down

0 comments on commit 3f56a87

Please sign in to comment.