Skip to content

Commit

Permalink
Test update to correct behavior of operator ==
Browse files Browse the repository at this point in the history
  • Loading branch information
mariomastrodicasa committed Mar 11, 2021
1 parent a1eca3f commit cd99576
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ else if (direction == DDM_CHANNEL_DIRECTION.RECEIVER)
hRes = HRESULT.S_OK;
if (direction == DDM_CHANNEL_DIRECTION.TRANSMITTER) {
hRes = mytestTopic.WriteOnChannel(str);
if (hRes == HRESULT.S_OK) {
if (hRes.getSuccess()) {
str = String.format("%d", counter++);
if ((counter % THRESHOLD) == 0) {
String key = String.format("SendData Reached %d", counter);
Expand Down

0 comments on commit cd99576

Please sign in to comment.