@@ -1229,15 +1229,19 @@ def test_rename_new_file_in_root(self):
12291229 old_path = b"a"
12301230 new_path = b"b"
12311231 handler .process (self .get_command_iter (old_path , new_path ))
1232- _revtree0 , revtree1 = self .assertChanges (branch , 1 , expected_added = [(new_path ,)])
1232+ _revtree0 , revtree1 = self .assertChanges (
1233+ branch , 1 , expected_added = [(new_path ,)]
1234+ )
12331235 self .assertRevisionRoot (revtree1 , new_path )
12341236
12351237 def test_rename_new_symlink_in_root (self ):
12361238 handler , branch = self .get_handler ()
12371239 old_path = b"a"
12381240 new_path = b"b"
12391241 handler .process (self .get_command_iter (old_path , new_path , "symlink" ))
1240- _revtree0 , revtree1 = self .assertChanges (branch , 1 , expected_added = [(new_path ,)])
1242+ _revtree0 , revtree1 = self .assertChanges (
1243+ branch , 1 , expected_added = [(new_path ,)]
1244+ )
12411245 self .assertRevisionRoot (revtree1 , new_path )
12421246
12431247 def test_rename_new_file_in_subdir (self ):
@@ -1440,7 +1444,9 @@ def test_rename_of_modified_file_in_root(self):
14401444 old_path = b"a"
14411445 new_path = b"b"
14421446 handler .process (self .get_command_iter (old_path , new_path ))
1443- _revtree0 , revtree1 = self .assertChanges (branch , 1 , expected_added = [(old_path ,)])
1447+ _revtree0 , revtree1 = self .assertChanges (
1448+ branch , 1 , expected_added = [(old_path ,)]
1449+ )
14441450 # Note: the delta doesn't show the modification?
14451451 # The actual new content is validated in the assertions following.
14461452 revtree1 , revtree2 = self .assertChanges (
@@ -1456,7 +1462,9 @@ def test_rename_of_modified_symlink_in_root(self):
14561462 old_path = b"a"
14571463 new_path = b"b"
14581464 handler .process (self .get_command_iter (old_path , new_path , "symlink" ))
1459- _revtree0 , revtree1 = self .assertChanges (branch , 1 , expected_added = [(old_path ,)])
1465+ _revtree0 , revtree1 = self .assertChanges (
1466+ branch , 1 , expected_added = [(old_path ,)]
1467+ )
14601468 # Note: the delta doesn't show the modification?
14611469 # The actual new content is validated in the assertions following.
14621470 revtree1 , revtree2 = self .assertChanges (
@@ -1576,7 +1584,9 @@ def test_rename_then_modify_file_in_root(self):
15761584 old_path = b"a"
15771585 new_path = b"b"
15781586 handler .process (self .get_command_iter (old_path , new_path ))
1579- _revtree0 , revtree1 = self .assertChanges (branch , 1 , expected_added = [(old_path ,)])
1587+ _revtree0 , revtree1 = self .assertChanges (
1588+ branch , 1 , expected_added = [(old_path ,)]
1589+ )
15801590 # Note: the delta doesn't show the modification?
15811591 # The actual new content is validated in the assertions following.
15821592 revtree1 , revtree2 = self .assertChanges (
@@ -1628,7 +1638,9 @@ def test_rename_then_modify_symlink_in_root(self):
16281638 old_path = b"a"
16291639 new_path = b"b"
16301640 handler .process (self .get_command_iter (old_path , new_path , "symlink" ))
1631- _revtree0 , revtree1 = self .assertChanges (branch , 1 , expected_added = [(old_path ,)])
1641+ _revtree0 , revtree1 = self .assertChanges (
1642+ branch , 1 , expected_added = [(old_path ,)]
1643+ )
16321644 # Note: the delta doesn't show the modification?
16331645 # The actual new content is validated in the assertions following.
16341646 revtree1 , revtree2 = self .assertChanges (
0 commit comments