summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--netfs/unittests/testCore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/netfs/unittests/testCore.cpp b/netfs/unittests/testCore.cpp
index cdbb958..1e68be5 100644
--- a/netfs/unittests/testCore.cpp
+++ b/netfs/unittests/testCore.cpp
@@ -653,7 +653,7 @@ BOOST_AUTO_TEST_CASE(interval_map_works_how_i_think)
auto check = [&](off_t o, size_t s, int c) {
BOOST_TEST_CONTEXT("offset: " << o << ", size: " << s << ", count: " << c) {
const auto ol = map.equal_range(r(o, s));
- BOOST_TEST_CONTEXT("range: " << ol.first->first.lower() << " to " << ol.first->first.upper()) {
+ BOOST_TEST_CONTEXT("range start: " << ol.first->first.lower()) {
BOOST_REQUIRE_EQUAL(std::distance(ol.first, ol.second), c);
}
}