Skip to content

Commit

Permalink
change namespace (#10467)
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido committed Jan 31, 2022
1 parent 77ef353 commit de9208b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion conan/tools/system/__init__.py
@@ -1 +0,0 @@
from conan.tools.system.package_manager import Apt, Yum, Dnf, Brew, Pkg, PkgUtil, Chocolatey, PacMan, Zypper
10 changes: 5 additions & 5 deletions conans/test/functional/tools/system/package_manager_test.py
Expand Up @@ -14,7 +14,7 @@ def test_apt_check():
client = TestClient()
client.save({"conanfile.py": textwrap.dedent("""
from conans import ConanFile
from conan.tools.system import Apt
from conan.tools.system.package_manager import Apt
class MyPkg(ConanFile):
settings = "arch", "os"
def system_requirements(self):
Expand All @@ -35,7 +35,7 @@ def test_build_require():
client = TestClient()
client.save({"tool_require.py": textwrap.dedent("""
from conans import ConanFile
from conan.tools.system import Apt
from conan.tools.system.package_manager import Apt
class MyPkg(ConanFile):
settings = "arch", "os"
def system_requirements(self):
Expand Down Expand Up @@ -63,7 +63,7 @@ def test_brew_check():
client = TestClient()
client.save({"conanfile.py": textwrap.dedent("""
from conans import ConanFile
from conan.tools.system import Brew
from conan.tools.system.package_manager import Brew
class MyPkg(ConanFile):
settings = "arch"
def system_requirements(self):
Expand All @@ -82,7 +82,7 @@ def test_brew_install_check_mode():
client = TestClient()
client.save({"conanfile.py": textwrap.dedent("""
from conans import ConanFile
from conan.tools.system import Brew
from conan.tools.system.package_manager import Brew
class MyPkg(ConanFile):
settings = "arch"
def system_requirements(self):
Expand All @@ -101,7 +101,7 @@ def test_brew_install_install_mode():
client = TestClient()
client.save({"conanfile.py": textwrap.dedent("""
from conans import ConanFile
from conan.tools.system import Brew
from conan.tools.system.package_manager import Brew
class MyPkg(ConanFile):
settings = "arch"
def system_requirements(self):
Expand Down

0 comments on commit de9208b

Please sign in to comment.