commit: 2c0f66fac0549638651960389dcd3d030233739e Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Fri Dec 19 13:38:04 2025 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Fri Dec 19 13:38:04 2025 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcore.git/commit/?id=2c0f66fa
use contextlib.chdir Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> tests/ebuild/test_eclass.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ebuild/test_eclass.py b/tests/ebuild/test_eclass.py index 13a6223c..bc95c1fb 100644 --- a/tests/ebuild/test_eclass.py +++ b/tests/ebuild/test_eclass.py @@ -1,5 +1,6 @@ +from contextlib import chdir + from pkgcore.ebuild import eclass -from snakeoil.contexts import chdir class FakeEclass:
