From c2eb036d3f25d7d4456400595aec8f8c8a0b1cb2 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 10 Nov 2011 23:33:47 +0100 Subject: policy/tests: Fix import of TestCase. Autobuild-User: Jelmer Vernooij Autobuild-Date: Fri Nov 11 01:10:49 CET 2011 on sn-devel-104 --- source4/lib/policy/tests/python/bindings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source4/lib/policy/tests/python/bindings.py b/source4/lib/policy/tests/python/bindings.py index afe85196c3..08b67e70c9 100644 --- a/source4/lib/policy/tests/python/bindings.py +++ b/source4/lib/policy/tests/python/bindings.py @@ -21,10 +21,11 @@ """ -import samba +from samba.tests import TestCase from samba import policy -class PolicyTests(samba.tests.TestCase): + +class PolicyTests(TestCase): def test_get_gpo_flags(self): self.assertEquals(["GPO_FLAG_USER_DISABLE"], -- cgit