I have basically a Dagger module a calling 2 dagger modules (b and c) both calling locally the same module (d). b and c requires the same container from d as dependency to run tests in their own container. a is just a main module to run tests from band cin one go. This is some kind of diamond dependency.
When commenting the need for the container for d in either bor c, there is no problem but when running them both in a, there is this error: Stdout: get parent name: invalid character 'u' looking for beginning of value .
I suppose that's a conflict problem, but I can't reproduce it on a simpler code to let anyone check where it comes from, so I'm trying to debug on my side but I'm a bit clueless on how to debug this.
Any help would be greatly appreciated π