aboutsummaryrefslogtreecommitdiff
path: root/pw_rpc/test_helpers_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pw_rpc/test_helpers_test.cc')
-rw-r--r--pw_rpc/test_helpers_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/pw_rpc/test_helpers_test.cc b/pw_rpc/test_helpers_test.cc
index 335424e64..7b4b6e2a9 100644
--- a/pw_rpc/test_helpers_test.cc
+++ b/pw_rpc/test_helpers_test.cc
@@ -47,8 +47,8 @@ class EntityUnderTest {
void AskForEcho() {
call_ = echo_client_.Echo(
- EchoMessage::Message{},
- [this](const EchoMessage::Message& response, pw::Status status) {
+ pwpb::EchoMessage::Message{},
+ [this](const pwpb::EchoMessage::Message& response, pw::Status status) {
lock_.lock();
if (status.ok()) {
last_echo_ = response.msg;
@@ -77,7 +77,7 @@ class EntityUnderTest {
private:
pw_rpc::pwpb::EchoService::Client& echo_client_;
- PwpbUnaryReceiver<EchoMessage::Message> call_;
+ PwpbUnaryReceiver<pwpb::EchoMessage::Message> call_;
pw::sync::TimedThreadNotification notifier_;
pw::Result<pw::InlineString<64>> last_echo_ PW_GUARDED_BY(lock_);
mutable pw::sync::InterruptSpinLock lock_;