Skip to content

Commit

Permalink
fix: Small update to Manage SDK test (#297)
Browse files Browse the repository at this point in the history
fix: Small update to manageSdk test
  • Loading branch information
ksentak authored Aug 8, 2024
1 parent 4d8cc55 commit 95e3b0f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/sdks/manage/src/cpp/sdk/cpptest/ManageSDKTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -617,9 +617,7 @@ void ManageSDKTest::KeyboardProvider::SendMessage(bool response)
cout << _parameters.message << " : ";
getline(cin, key);
if (response) {
Firebolt::Keyboard::KeyboardResult keyboardResult;
keyboardResult.text = key;
keyboardResult.canceled = false;
std::string keyboardResult = key;
cout << " Invoking _session->result " << endl;
_session->result(keyboardResult);
} else {
Expand Down

0 comments on commit 95e3b0f

Please sign in to comment.