From: Douglas Bagnall Date: Thu, 11 Oct 2018 00:50:06 +0000 (+1300) Subject: python/tests/lsa_string: remove duplicate method X-Git-Tag: tdb-1.3.17~1151 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03f45656fd298a7569a08ab4bb7feaff36780a39;p=thirdparty%2Fsamba.git python/tests/lsa_string: remove duplicate method Signed-off-by: Douglas Bagnall Reviewed-by: Noel Power --- diff --git a/python/samba/tests/lsa_string.py b/python/samba/tests/lsa_string.py index b8519b6b37f..bcc76b5b0ba 100644 --- a/python/samba/tests/lsa_string.py +++ b/python/samba/tests/lsa_string.py @@ -33,15 +33,6 @@ class LsaStringTests(TestCase): self.assertEqual(0, s.size) self.assertEqual(0, s.length) - def test_string_constructor(self): - CONTENT = "The content string" - s = lsa.String(CONTENT) - self.assertEqual(CONTENT, s.string) - - # These should be zero, are set by ndr_pack and ndr_unpack - self.assertEqual(0, s.size) - self.assertEqual(0, s.length) - def test_string_constructor(self): CONTENT = "The content string" s = lsa.String(CONTENT)