Should we move the test for the [imaginary unit](https://github.com/exercism/problem-specifications/blob/f8aaffbe76632ff25989f8754026bf86e3e493ba/exercises/complex-numbers/canonical-data.json#L74) to the "multiply" group of unit tests? I think it's currently too soon in the test suite. There is a nice progression to the unit tests: * real part * imaginary part * add * subtract * multiply and so on. The test for the "imaginary unit" involves multiplication but is inserted between the "imaginary" and "add" groups. I think this is purely [historical](https://github.com/exercism/problem-specifications/commits/master/exercises/complex-numbers/canonical-data.json). PR #718 created the tests, #1140 reordered them but missed this one. I don't mind opening a PR but first I'd like to learn how to test changes.