@@ -198,7 +198,7 @@ def testMoveResource(self):
198198
199199 # Start off in 0 collections
200200 self .assertEqual (len (self .resource .InCollections ()), 0 )
201-
201+
202202 # Move resource into collection
203203 entry = self .client .MoveResource (self .resource , collection )
204204 self .assertEqual (len (entry .InCollections ()), 1 )
@@ -292,7 +292,7 @@ def testGetAclEntry(self):
292292 def testAddAclEntry (self ):
293293 acl_entry_to_add = gdata .docs .data .AclEntry .GetInstance (
294294 role = 'writer' , scope_type = 'default' , key = True )
295-
295+
296296 new_acl_entry = self .client .AddAclEntry (self .resource , acl_entry_to_add )
297297 self .assertEqual (acl_entry_to_add .scope .type , new_acl_entry .scope .type )
298298 self .assertEqual (new_acl_entry .scope .value , None )
@@ -310,7 +310,7 @@ def testUpdateAclEntry(self):
310310 key = True )
311311 other_acl_entry = gdata .docs .data .AclEntry .GetInstance (
312312 role = 'writer' , scope_type = 'user' , scope_value = 'jeff@example.com' )
313-
313+
314314 new_acl_entry = self .client .AddAclEntry (self .resource , acl_entry_to_add )
315315 new_acl_entry .with_key = None
316316 new_acl_entry .scope = other_acl_entry .scope
0 commit comments