*: Switch reflect.DeepEqual to own deepEqual that supports Dict
reflect.DeepEqual does not work with Dicts because each Dict uses own distinct random seed. But in the tests we will need to be able to compare arbitrary objects, including Dicts. -> Fix this via implementing our own deepEqual that extends reflect.DeepEqual to also support Dicts. Handle only top-level Dicts for now as that level of support will be enough for our tests.
Showing
xreflect.go
0 → 100644
Please register or sign in to comment