Summary
a === b got mutated to a =!= b
which makes the mutated code not compile.
Should have been a !== b as the documentation says (https://stryker-mutator.io/docs/mutation-testing-elements/supported-mutators/#equality-operator)
Stryker4s config
stryker4s {
scala-dialect: "scala3"
}
Stryker4s environment
Your Environment
| software |
version(s) |
| Scala version |
3.4.1 |
| Build tool & version |
1.10.0 |
| Operating System |
macOS Sonoma 14.2.1 |
Summary
a === bgot mutated toa =!= bwhich makes the mutated code not compile.
Should have been
a !== bas the documentation says (https://stryker-mutator.io/docs/mutation-testing-elements/supported-mutators/#equality-operator)Stryker4s config
Stryker4s environment
Your Environment