Rename all The c++ JNI classes
Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/272 Reviewed By: passy Differential Revision: D9861432 Pulled By: jknoxville fbshipit-source-id: 523b8fc28541b922bbcc0939514f4ddd0a3fc1b0
This commit is contained in:
committed by
Facebook Github Bot
parent
a480be90a2
commit
9d9fa17134
@@ -207,7 +207,7 @@ TEST(SonarClientTests, testExecute) {
|
||||
|
||||
const auto connectionCallback = [](std::shared_ptr<SonarConnection> conn) {
|
||||
const auto receiver = [](const dynamic ¶ms,
|
||||
std::unique_ptr<SonarResponder> responder) {
|
||||
std::unique_ptr<FlipperResponder> responder) {
|
||||
dynamic payload = dynamic::object("message", "yes_i_hear_u");
|
||||
responder->success(payload);
|
||||
};
|
||||
@@ -236,7 +236,7 @@ TEST(SonarClientTests, testExecuteWithParams) {
|
||||
|
||||
const auto connectionCallback = [&](std::shared_ptr<SonarConnection> conn) {
|
||||
const auto receiver = [](const dynamic ¶ms,
|
||||
std::unique_ptr<SonarResponder> responder) {
|
||||
std::unique_ptr<FlipperResponder> responder) {
|
||||
const auto &first = params["first"].asString();
|
||||
const auto &second = params["second"].asString();
|
||||
std::map<std::string, std::string> m{{"dog", "woof"}, {"cat", "meow"}};
|
||||
|
||||
Reference in New Issue
Block a user