aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/skippedsourceranges-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/unittest/skippedsourceranges-test.cpp')
-rw-r--r--tests/unit/unittest/skippedsourceranges-test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/unittest/skippedsourceranges-test.cpp b/tests/unit/unittest/skippedsourceranges-test.cpp
index c91f726437..6a2d80d852 100644
--- a/tests/unit/unittest/skippedsourceranges-test.cpp
+++ b/tests/unit/unittest/skippedsourceranges-test.cpp
@@ -141,7 +141,7 @@ TEST_F(SkippedSourceRanges, DISABLED_ON_WINDOWS(RangeOne))
{
auto ranges = skippedSourceRanges.sourceRanges();
- ASSERT_THAT(ranges[0].start(), IsSourceLocation(filePath, 1, 1, 0));
+ ASSERT_THAT(ranges[0].start(), IsSourceLocation(filePath, 2, 1, 6));
ASSERT_THAT(ranges[0].end(), IsSourceLocation(filePath, 5, 1, 18));
}
@@ -149,7 +149,7 @@ TEST_F(SkippedSourceRanges, DISABLED_ON_WINDOWS(RangeTwo))
{
auto ranges = skippedSourceRanges.sourceRanges();
- ASSERT_THAT(ranges[1].start(), IsSourceLocation(filePath, 7, 1, 26));
+ ASSERT_THAT(ranges[1].start(), IsSourceLocation(filePath, 8, 1, 39));
ASSERT_THAT(ranges[1].end(), IsSourceLocation(filePath, 12, 1, 57));
}