Attention is currently required from: pespin.
Patch set 1:Code-Review +1
2 comments:
File stp/STP_Tests_IPA.ttcn:
Patch Set #1, Line 309: where
were
Patch Set #1, Line 313: if (not ((num_rx_1 == iter_per_asp and num_rx_2 == 0) or (num_rx_2 == iter_per_asp and num_rx_1 == 0))) {
Could be rewritten as the following, not sure if more readable:
```suggestion
if (num_rx1 != iter_per_asp or num_rx2 != 0) and (num_rx2 != iter_per_asp or num_rx1 != 0) {
```
To view, visit change 39765. To unsubscribe, or for help writing mail filters, visit settings.