From 920467e1f3cb979008012f143cede7cdcedba0af Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Tue, 4 Dec 2018 11:47:51 +0100 Subject: [PATCH] Fix signed/unsigned compare --- ApplicationCode/UnitTests/RifPerforationIntervalReader-Test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationCode/UnitTests/RifPerforationIntervalReader-Test.cpp b/ApplicationCode/UnitTests/RifPerforationIntervalReader-Test.cpp index dde2b76a7a..cf15c0ca3b 100644 --- a/ApplicationCode/UnitTests/RifPerforationIntervalReader-Test.cpp +++ b/ApplicationCode/UnitTests/RifPerforationIntervalReader-Test.cpp @@ -17,5 +17,5 @@ TEST(RifPerforationIntervalReaderTest, SpacesInWellNameHandledSuccessfully) std::map > perforationIntervals = RifPerforationIntervalReader::readPerforationIntervals(PERFORATION_TEST_DATA_DIRECTORY + "perforations_with_space_after_well_name.ev"); - EXPECT_EQ(10, perforationIntervals["A1_RI_HZX"].size()); + EXPECT_EQ(size_t(10), perforationIntervals["A1_RI_HZX"].size()); }