Skip to content

Commit

Permalink
fix(tests): Fix check_pubsub_informationmodel_methods.c on MSVC
Browse files Browse the repository at this point in the history
The IP address for the test was not recognized as valid for multicast.
  • Loading branch information
jpfr committed Sep 29, 2024
1 parent 627394e commit a296324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pubsub/check_pubsub_informationmodel_methods.c
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,7 @@ START_TEST(ReserveIdsMultipleTimes){
connectionConfig.transportProfileUri = transportProfileUri;
UA_NetworkAddressUrlDataType networkAddressUrl;
UA_NetworkAddressUrlDataType_init(&networkAddressUrl);
networkAddressUrl.url = UA_STRING("opc.udp://224.0.0.1:4840");
networkAddressUrl.url = UA_STRING("opc.udp://224.0.0.22:4840");
UA_Variant_setScalar(&connectionConfig.address, &networkAddressUrl,
&UA_TYPES[UA_TYPES_NETWORKADDRESSURLDATATYPE]);
UA_NodeId connectionNodeId, writerGroupNodeId, dataSetWriterNodeId, publishedDataSetNodeId;
Expand Down

0 comments on commit a296324

Please sign in to comment.