summaryrefslogtreecommitdiff
path: root/libjsonpb
diff options
context:
space:
mode:
authorHaibo Huang <hhb@google.com>2019-11-08 12:20:22 -0800
committerHaibo Huang <hhb@google.com>2019-11-08 12:20:22 -0800
commit05527e7a4a5a3070f0af273037747dc07903ce12 (patch)
treec0d157c1a6444d9c176faa48402863878d147b19 /libjsonpb
parentab10d26e56055a9ce3d86ebcaa0cf8ef76b82366 (diff)
downloadextras-05527e7a4a5a3070f0af273037747dc07903ce12.tar.gz
Fix build with new googletest
The new googletest requires prefix to be non-empty. Change-Id: Iacd96a6e2fcfb2193c7627212e9e710fb655d6d9
Diffstat (limited to 'libjsonpb')
-rw-r--r--libjsonpb/verify/test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libjsonpb/verify/test.cpp b/libjsonpb/verify/test.cpp
index 31a734ad..cb98f47f 100644
--- a/libjsonpb/verify/test.cpp
+++ b/libjsonpb/verify/test.cpp
@@ -287,7 +287,7 @@ static const std::vector<ScalarTestErrorParam> gScalarTestErrorParams = {
{"{\"e\": 1}", "Should not allow integers for enums"},
};
-INSTANTIATE_TEST_SUITE_P(, ScalarTestError,
+INSTANTIATE_TEST_SUITE_P(Jsonpb, ScalarTestError,
::testing::ValuesIn(gScalarTestErrorParams));
int main(int argc, char** argv) {