Skip to content

Commit b59e381

Browse files
committed
Fix error in decprecated tests
Signed-off-by: Emilio Cuesta <emiliocuesta@eprosima.com>
1 parent 06b6400 commit b59e381

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/blackbox/api/fastrtps_deprecated/PubSubReader.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ class PubSubReader
608608
}
609609

610610
#if HAVE_SECURITY
611-
void waitAuthorized(
611+
void wait_authorized(
612612
std::chrono::seconds timeout = std::chrono::seconds::zero(),
613613
unsigned int expected = 1)
614614
{
@@ -634,7 +634,7 @@ class PubSubReader
634634
std::cout << "Reader authorization finished..." << std::endl;
635635
}
636636

637-
void waitUnauthorized()
637+
void wait_unauthorized()
638638
{
639639
std::unique_lock<std::mutex> lock(mutexAuthentication_);
640640

test/blackbox/api/fastrtps_deprecated/PubSubWriter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ class PubSubWriter
571571
}
572572

573573
#if HAVE_SECURITY
574-
void waitAuthorized(
574+
void wait_authorized(
575575
std::chrono::seconds timeout = std::chrono::seconds::zero(),
576576
unsigned int expected = 1)
577577
{

test/blackbox/api/fastrtps_deprecated/PubSubWriterReader.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ class PubSubWriterReader
534534
}
535535

536536
#if HAVE_SECURITY
537-
void waitAuthorized(
537+
void wait_authorized(
538538
unsigned int how_many = 1)
539539
{
540540
std::unique_lock<std::mutex> lock(mutexAuthentication_);
@@ -550,7 +550,7 @@ class PubSubWriterReader
550550
std::cout << "WReader authorization finished..." << std::endl;
551551
}
552552

553-
void waitUnauthorized(
553+
void wait_unauthorized(
554554
unsigned int how_many = 1)
555555
{
556556
std::unique_lock<std::mutex> lock(mutexAuthentication_);

0 commit comments

Comments
 (0)