@@ -101,15 +101,19 @@ TEST_F(ParametersClientTest, cmdParameterGet)
101
101
cmdParameterGet (" " , " parameter1" );
102
102
auto output = coutCapture.str ();
103
103
EXPECT_NE (std::string::npos, output.find (" gz_msgs.Boolean" ));
104
- EXPECT_EQ (cerrCapture.str (), " " );
104
+ // TODO(azeey) Uncomment after
105
+ // https://github.com/gazebosim/gz-transport/issues/435 is resolved
106
+ // EXPECT_EQ(cerrCapture.str(), "");
105
107
}
106
108
{
107
109
CaptureCoutScoped coutCapture;
108
110
CaptureCerrScoped cerrCapture;
109
111
cmdParameterGet (" " , " parameter2" );
110
112
auto output = coutCapture.str ();
111
113
EXPECT_NE (std::string::npos, output.find (" gz_msgs.StringMsg" ));
112
- EXPECT_EQ (cerrCapture.str (), " " );
114
+ // TODO(azeey) Uncomment after
115
+ // https://github.com/gazebosim/gz-transport/issues/435 is resolved
116
+ // EXPECT_EQ(cerrCapture.str(), "");
113
117
}
114
118
{
115
119
CaptureCoutScoped coutCapture;
@@ -118,7 +122,9 @@ TEST_F(ParametersClientTest, cmdParameterGet)
118
122
auto output = coutCapture.str ();
119
123
EXPECT_NE (std::string::npos, output.find (" gz_msgs.StringMsg" ));
120
124
EXPECT_NE (std::string::npos, output.find (" bsd" ));
121
- EXPECT_EQ (cerrCapture.str (), " " );
125
+ // TODO(azeey) Uncomment after
126
+ // https://github.com/gazebosim/gz-transport/issues/435 is resolved
127
+ // EXPECT_EQ(cerrCapture.str(), "");
122
128
}
123
129
{
124
130
CaptureCerrScoped cerrCapture;
0 commit comments