PEP8: fix E128: continuation line under-indented for visual indent
[amitay/samba.git] / python / samba / tests / smb.py
index 141e4388e03cfa56dd1ca01a12594e7760c2e0e0..a34ca835b71ff17c3667234be9c61b4dca504d18 100644 (file)
@@ -49,9 +49,9 @@ class SMBTests(samba.tests.TestCase):
     def test_list(self):
         ls = [f['name'] for f in self.conn.list(addom)]
         self.assertIn('scripts', ls,
-            msg='"scripts" directory not found in sysvol')
+                      msg='"scripts" directory not found in sysvol')
         self.assertIn('Policies',ls,
-            msg='"Policies" directory not found in sysvol')
+                      msg='"Policies" directory not found in sysvol')
 
     def test_unlink(self):
         """
@@ -67,7 +67,7 @@ class SMBTests(samba.tests.TestCase):
 
         contents = self.conn.loadfile(test_file)
         self.assertEquals(contents.decode('utf8'), test_contents,
-            msg='contents of test file did not match what was written')
+                          msg='contents of test file did not match what was written')
 
     # with python2 this will save/load str type (with embedded nulls)
     # with python3 this will save/load bytes type
@@ -76,7 +76,7 @@ class SMBTests(samba.tests.TestCase):
 
         contents = self.conn.loadfile(test_file)
         self.assertEquals(contents, test_literal_bytes_embed_nulls,
-            msg='contents of test file did not match what was written')
+                          msg='contents of test file did not match what was written')
 
     # python3 only this will save/load unicode
     def test_save_load_utfcontents(self):
@@ -85,7 +85,7 @@ class SMBTests(samba.tests.TestCase):
 
             contents = self.conn.loadfile(test_file)
             self.assertEquals(contents.decode('utf8'), utf_contents,
-                msg='contents of test file did not match what was written')
+                              msg='contents of test file did not match what was written')
 
     # with python2 this will save/load str type
     # with python3 this will save/load bytes type
@@ -94,4 +94,4 @@ class SMBTests(samba.tests.TestCase):
 
         contents = self.conn.loadfile(test_file)
         self.assertEquals(contents, binary_contents,
-            msg='contents of test file did not match what was written')
+                          msg='contents of test file did not match what was written')