Skip to content

Commit

Permalink
Enable some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue committed Nov 9, 2023
1 parent d504639 commit 7951c15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ntcore/src/test/native/cpp/TopicListenerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ TEST_F(TopicListenerTest, TopicNewLocal) {
CheckEvents(events, handle, nt::EventFlags::kPublish, "/foo");
}

TEST_F(TopicListenerTest, DISABLED_TopicNewRemote) {
TEST_F(TopicListenerTest, TopicNewRemote) {
Connect(10010);
if (HasFatalFailure()) {
return;
Expand Down Expand Up @@ -158,7 +158,7 @@ TEST_F(TopicListenerTest, TopicUnpublishLocal) {
CheckEvents(events, handle, nt::EventFlags::kUnpublish, "/foo");
}

TEST_F(TopicListenerTest, DISABLED_TopicUnpublishRemote) {
TEST_F(TopicListenerTest, TopicUnpublishRemote) {
Connect(10010);
if (HasFatalFailure()) {
return;
Expand Down Expand Up @@ -198,7 +198,7 @@ TEST_F(TopicListenerTest, TopicPropertiesLocal) {
CheckEvents(events, handle, nt::EventFlags::kProperties, "/foo");
}

TEST_F(TopicListenerTest, DISABLED_TopicPropertiesRemote) {
TEST_F(TopicListenerTest, TopicPropertiesRemote) {
Connect(10010);
if (HasFatalFailure()) {
return;
Expand Down Expand Up @@ -234,7 +234,7 @@ TEST_F(TopicListenerTest, PrefixPublishLocal) {
CheckEvents(events, handle, nt::EventFlags::kPublish);
}

TEST_F(TopicListenerTest, DISABLED_PrefixPublishRemote) {
TEST_F(TopicListenerTest, PrefixPublishRemote) {
Connect(10011);
if (HasFatalFailure()) {
return;
Expand Down

0 comments on commit 7951c15

Please sign in to comment.