From 04872e1d7f6b42719f078f4002e92652e141aa19 Mon Sep 17 00:00:00 2001 From: u2takey Date: Wed, 1 Jul 2020 00:01:39 +0800 Subject: [PATCH] fix a test with wrong comment --- mediapipe/framework/calculator_graph_test.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mediapipe/framework/calculator_graph_test.cc b/mediapipe/framework/calculator_graph_test.cc index 1adf2c0ac..64b187ed1 100644 --- a/mediapipe/framework/calculator_graph_test.cc +++ b/mediapipe/framework/calculator_graph_test.cc @@ -1832,10 +1832,11 @@ TEST(CalculatorGraph, StatusHandlerInputVerification) { // The problematic input side packet. testing::HasSubstr("generated_by_generator"), // Actual type. - testing::HasSubstr("string"), - // Expected type. testing::HasSubstr( - MediaPipeTypeStringOrDemangled()))); + MediaPipeTypeStringOrDemangled()), + // Expected type. + testing::HasSubstr("string") +)); } TEST(CalculatorGraph, GenerateInInitialize) {