Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix (ui): unit-test display results (#2855)
* fix (ui): unit-test display results fix user issue CD-1862 before fix: ``` > assert free_devices == host.flashcache_free_devices E AssertionError: assert [] == [] E Left contains more items, first extra item: E Full diff: E - [] E + [] ``` with the fix: ``` > assert free_devices == host.flashcache_free_devices E AssertionError: assert [<Mock id='139953411755408'>] == [] E Left contains more items, first extra item: <Mock id='139953411755408'> E Full diff: E - [<Mock id='139953411755408'>] E + [] ``` Signed-off-by: Yvonnick Esnault <yvonnick.esnault@corp.ovh.com> * cr Signed-off-by: Yvonnick Esnault <yvonnick.esnault@corp.ovh.com>
- Loading branch information