~mvo/click/lp1346723-chroot

« back to all changes in this revision

Viewing changes to tests/integration/test_build_core_apps.py

  • Committer: Colin Watson
  • Date: 2014-07-03 10:54:20 UTC
  • mfrom: (481.1.1 fix-testcase-rename)
  • Revision ID: cjwatson@canonical.com-20140703105420-519v5bnbqp980r2o
Fix a missing TestCase -> ClickTestCase rename in the integration tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    chdir,
27
27
    has_network,
28
28
    is_root,
29
 
    TestCase,
 
29
    ClickTestCase,
30
30
)
31
31
 
32
32
# the branches we want to testbuild
65
65
 
66
66
@unittest.skipIf(not is_root(), "This tests needs to run as root")
67
67
@unittest.skipIf(not has_network(), "Need network")
68
 
class TestBuildCoreApps(TestCase, metaclass=AddBranchTestFunctions):
 
68
class TestBuildCoreApps(ClickTestCase, metaclass=AddBranchTestFunctions):
69
69
 
70
70
    def _run_in_chroot(self, cmd):
71
71
        """Run the given cmd in a click chroot"""