@@ -679,7 +679,7 @@ def test_logging(self):
679679 stdout = self .RunGsUtil (['ls' , '-lb' , bucket_suri ], return_stdout = True )
680680 self .assertNotIn ('Logging configuration' , stdout )
681681
682- spacing = ' ' if self . _use_gcloud_storage else ' \t \t '
682+ spacing = '\t \t '
683683 # Logging configuration is absent by default
684684 stdout = self .RunGsUtil (['ls' , '-Lb' , bucket_suri ], return_stdout = True )
685685 self .assertIn ('Logging configuration:{}None' .format (spacing ), stdout )
@@ -704,7 +704,7 @@ def test_web(self):
704704 stdout = self .RunGsUtil (['ls' , '-lb' , bucket_suri ], return_stdout = True )
705705 self .assertNotIn ('Website configuration' , stdout )
706706
707- spacing = ' ' if self . _use_gcloud_storage else ' \t \t '
707+ spacing = '\t \t '
708708 # Website configuration is absent by default
709709 stdout = self .RunGsUtil (['ls' , '-Lb' , bucket_suri ], return_stdout = True )
710710 self .assertIn ('Website configuration:{}None' .format (spacing ), stdout )
@@ -726,7 +726,7 @@ def test_requesterpays(self):
726726 bucket_uri = self .CreateBucket ()
727727 bucket_suri = suri (bucket_uri )
728728
729- spacing = ' ' if self . _use_gcloud_storage else ' \t \t '
729+ spacing = '\t \t '
730730 # No requester pays configuration
731731 stdout = self .RunGsUtil (['ls' , '-lb' , bucket_suri ], return_stdout = True )
732732 self .assertNotIn ('Requester Pays enabled' , stdout )
0 commit comments