From a7eb5504225c7a21a55e39e09ca32974c94f09db Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 15 Jul 2015 19:10:00 +0100 Subject: [PATCH] Fixed build error. --- src/tests/printers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/printers.h b/src/tests/printers.h index 1733c581..3431ace3 100644 --- a/src/tests/printers.h +++ b/src/tests/printers.h @@ -57,7 +57,7 @@ namespace loot { void PrintTo(const Location& value, ::std::ostream* os) { *os << "loot::Location(\"" << value.URL() << "\", " - << ::testing::PrintToString(value.Versions()) + << "\"" << value.Name() << "\", " << ")"; }