Skip to content

Commit

Permalink
Refs 13290. Linters.
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Company <MiguelCompany@eprosima.com>
  • Loading branch information
MiguelCompany committed Dec 20, 2021
1 parent cb95e98 commit 11a2add
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unittest/dds/participant/ParticipantTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3257,7 +3257,8 @@ TEST(ParticipantTests, ContentFilterInterfaces)
EXPECT_EQ(ReturnCode_t::RETCODE_OK, participant->delete_subscriber(subscriber));

// Should be able to delete filtered_topic, but only on correct participant
EXPECT_EQ(ReturnCode_t::RETCODE_PRECONDITION_NOT_MET, participant2->delete_contentfilteredtopic(filtered_topic));
EXPECT_EQ(ReturnCode_t::RETCODE_PRECONDITION_NOT_MET,
participant2->delete_contentfilteredtopic(filtered_topic));
EXPECT_EQ(filtered_topic, participant->lookup_topicdescription("contentfilteredtopic"));
EXPECT_EQ(ReturnCode_t::RETCODE_OK, participant->delete_contentfilteredtopic(filtered_topic));
EXPECT_EQ(nullptr, participant->lookup_topicdescription("contentfilteredtopic"));
Expand Down

0 comments on commit 11a2add

Please sign in to comment.