Skip to content

Commit efeaa40

Browse files
committed
AVInput COM-RPC Support: Unit tests: Fixed GetVRRFrameRate
1 parent 67f0052 commit efeaa40

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Tests/L1Tests/tests/test_AVInput.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,11 @@ TEST_F(AVInputInit, getInputDevices)
368368
.WillOnce(::testing::Return(1));
369369
TEST_LOG("*** _DEBUG: TEST_F(AVInputInit, getInputDevices): Mark 2");
370370
EXPECT_EQ(Core::ERROR_NONE, handler.Invoke(connection, _T("getInputDevices"), _T("{}"), response));
371-
TEST_LOG("*** _DEBUG: TEST_F(AVInputInit, getInputDevices): response=%s", response);
372-
EXPECT_EQ(response, string("{\"devices\":[{\"id\":0,\"connected\":false,\"locator\":\"hdmiin:\\/\\/localhost\\/deviceid\\/0\"},{\"id\":0,\"connected\":false,\"locator\":\"cvbsin:\\/\\/localhost\\/deviceid\\/0\"}],\"success\":true}"));
371+
TEST_LOG("*** _DEBUG: TEST_F(AVInputInit, getInputDevices): response=%s", response.c_str());
372+
// <pca>
373+
//EXPECT_EQ(response, string("{\"devices\":[{\"id\":0,\"connected\":false,\"locator\":\"hdmiin:\\/\\/localhost\\/deviceid\\/0\"},{\"id\":0,\"connected\":false,\"locator\":\"cvbsin:\\/\\/localhost\\/deviceid\\/0\"}],\"success\":true}"));
374+
EXPECT_EQ(response, string("\"devices\":[{\"id\":0,\"locator\":\"hdmiin:\\/\\/localhost\\/deviceid\\/0\",\"connected\":false}],\"success\":true}"));
375+
// </pca>
373376
TEST_LOG("*** _DEBUG: TEST_F(AVInputInit, getInputDevices): exit");
374377
}
375378

0 commit comments

Comments
 (0)