1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-12 12:23:50 +03:00

selftest: Use TestCaseInTempDir as base class in dns tests

This will help when we add a new join test based on this code

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
Andrew Bartlett
2017-06-01 15:15:25 +12:00
parent 9229809f75
commit b36d4e9ca4

View File

@@ -16,7 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from samba.tests import TestCase
from samba.tests import TestCaseInTempDir
from samba.dcerpc import dns, dnsp
from samba import gensec, tests
from samba import credentials
@@ -27,7 +27,7 @@ import socket
import uuid
import time
class DNSTest(TestCase):
class DNSTest(TestCaseInTempDir):
def setUp(self):
super(DNSTest, self).setUp()