You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The result of the function getCfgCombinations is wrong: the slice of append(o, cfg) is reused and thus overwrites previous slices, so the test doesn't cover all the cases.
The cfgOverriders are wrong. E.g. cfg.clientConfig.capability = defaultTestClientCapability & ^pnet.ClientPSMultiResults overwrites other capabilities. It should be cfg.clientConfig.capability &= ^pnet.ClientPSMultiResults to only change the current capability. It also doesn't cover all the cases.
The text was updated successfully, but these errors were encountered:
Bug Report
getCfgCombinations
is wrong: the slice ofappend(o, cfg)
is reused and thus overwrites previous slices, so the test doesn't cover all the cases.cfg.clientConfig.capability = defaultTestClientCapability & ^pnet.ClientPSMultiResults
overwrites other capabilities. It should becfg.clientConfig.capability &= ^pnet.ClientPSMultiResults
to only change the current capability. It also doesn't cover all the cases.The text was updated successfully, but these errors were encountered: