aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/tests/fieldpathupdatetestcase.cpp
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-03-27 12:57:56 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-03-27 12:57:56 +0000
commitf1ca88107239ff1ba6bf0f7e142486352ffd90e4 (patch)
tree69e95687052afd906fdb269c4289a4c054691cba /document/src/tests/fieldpathupdatetestcase.cpp
parent7434b1b90dca83db68f1c55d6db5843bdd531aa1 (diff)
Avoid multiple inheritance.
Diffstat (limited to 'document/src/tests/fieldpathupdatetestcase.cpp')
-rw-r--r--document/src/tests/fieldpathupdatetestcase.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/document/src/tests/fieldpathupdatetestcase.cpp b/document/src/tests/fieldpathupdatetestcase.cpp
index 3d41a5bcacd..17b84ecc180 100644
--- a/document/src/tests/fieldpathupdatetestcase.cpp
+++ b/document/src/tests/fieldpathupdatetestcase.cpp
@@ -182,8 +182,9 @@ void testSerialize(const DocumentTypeRepo& repo, const DocumentUpdate& a) {
}
EXPECT_EQ(a, *b);
} catch (std::exception& e) {
- std::cerr << "Failed while testing document field path update:\n"
- << a.toString(true) << "\n";
+ std::cerr << "Failed while testing document field path update:\n";
+ a.print(std::cerr, true, "");
+ std::cerr << std::endl;
throw;
}
}