54172168e2
- The use of contextlib and "with nested" statements are deprecated. - This change remove the deprecation warning by refactoring all unit test that used "with neted" statements to create mocks via with the decorator syntax. - This chage removes all depencies on contexlib. trivial_fix Change-Id: I6d929e59306f9289f717fff3fb79542e804396b6
7 lines
329 B
YAML
7 lines
329 B
YAML
---
|
|
fixes:
|
|
- The use of contextlib and with nested statements is deprecated.
|
|
"with nested" statements are not python 3 compatible as with statement now directly
|
|
support context managers. The use of contextlib and "with nested" statements has
|
|
been removed from all unittests in favor of the @mock decorator syntax.
|