Skip to content

Commit

Permalink
Refs #21817: Fix database queue broken tests
Browse files Browse the repository at this point in the history
Signed-off-by: Carlosespicur <carlosespicur@proton.me>
  • Loading branch information
Carlosespicur committed Nov 15, 2024
1 parent f74e826 commit 0d2fb93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unittest/DatabaseQueue/DatabaseQueueTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1356,7 +1356,7 @@ TEST_F(database_queue_tests, push_datawriter)
std::chrono::system_clock::time_point timestamp = std::chrono::system_clock::now();

// Create the writer info
std::string datawriter_name = "DataWriter_topic_name_0.0.0.1"; //< Name constructed from the topic and entity_id
std::string datawriter_name = "topic_name_0.0.0.1"; //< Name constructed from the topic and entity_id
Qos datawriter_qos;
std::string datawriter_guid_str = "01.02.03.04.05.06.07.08.09.0a.0b.0c|0.0.0.1";
std::string topic_name = "topic_name";
Expand Down Expand Up @@ -1594,7 +1594,7 @@ TEST_F(database_queue_tests, push_datawriter_topic_does_not_exist)
std::chrono::system_clock::time_point timestamp = std::chrono::system_clock::now();

// Create the writer info
std::string datawriter_name = "DataWriter_topic_name_0.0.0.1"; //< Name constructed from the topic and entity_id
std::string datawriter_name = "topic_name_0.0.0.1"; //< Name constructed from the topic and entity_id
Qos datawriter_qos;
std::string datawriter_guid_str = "01.02.03.04.05.06.07.08.09.0a.0b.0c|0.0.0.1";
std::string topic_name = "topic_name";
Expand Down Expand Up @@ -1720,7 +1720,7 @@ TEST_F(database_queue_tests, push_datareader)
std::chrono::system_clock::time_point timestamp = std::chrono::system_clock::now();

// Create the reader info
std::string datareader_name = "DataReader_topic_name_0.0.0.2"; //< Name constructed from the topic and entity_id
std::string datareader_name = "topic_name_0.0.0.2"; //< Name constructed from the topic and entity_id
Qos datareader_qos;
std::string datareader_guid_str = "01.02.03.04.05.06.07.08.09.0a.0b.0c|0.0.0.2";
std::string topic_name = "topic_name";
Expand Down Expand Up @@ -1958,7 +1958,7 @@ TEST_F(database_queue_tests, push_datareader_topic_does_not_exist)
std::chrono::system_clock::time_point timestamp = std::chrono::system_clock::now();

// Create the reader info
std::string datareader_name = "DataReader_topic_name_0.0.0.2"; //< Name constructed from the topic and entity_id
std::string datareader_name = "topic_name_0.0.0.2"; //< Name constructed from the topic and entity_id
Qos datareader_qos;
std::string datareader_guid_str = "01.02.03.04.05.06.07.08.09.0a.0b.0c|0.0.0.2";
std::string topic_name = "topic_name";
Expand Down

0 comments on commit 0d2fb93

Please sign in to comment.