Closed jeffque closed 1 year ago
Lines like this one 👇
container.startCommand &(expectation("-p 27"))
are yielding warnings like those 👇
`&' interpreted as argument prefix
This warning indicates a possible of ambiguity in the syntax construction. To avoid this ambiguity, one should put the block in parenthesis, like this 👇
container.startCommand(&expectation("-p 27"))
This fix was hinted by @EronAlves1996
Lines like this one 👇
are yielding warnings like those 👇
This warning indicates a possible of ambiguity in the syntax construction. To avoid this ambiguity, one should put the block in parenthesis, like this 👇