@@ -277,7 +277,7 @@ def __init__(self, *args, **kwargs):
277277super (Child ,self ).__init__ (* args ,** kwargs )
278278
279279child_commits = list (Child .iter_items (self .rorepo ,"master" ,paths = ("CHANGES" ,"AUTHORS" )))
280- assert type (child_commits [0 ])== Child
280+ assert type (child_commits [0 ])is Child
281281
282282def test_iter_items (self ):
283283# pretty not allowed
@@ -525,12 +525,12 @@ def test_trailers(self):
525525
526526# check that trailer stays empty for multiple msg combinations
527527msgs = [
528- f "Subject\n " ,
529- f "Subject\n \n Body with some\n Text\n " ,
530- f "Subject\n \n Body with\n Text\n \n Continuation but\n doesn't contain colon\n " ,
531- f "Subject\n \n Body with\n Text\n \n Continuation but\n only contains one :\n " ,
532- f "Subject\n \n Body with\n Text\n \n Key: Value\n Line without colon\n " ,
533- f "Subject\n \n Body with\n Text\n \n Line without colon\n Key: Value\n " ,
528+ "Subject\n " ,
529+ "Subject\n \n Body with some\n Text\n " ,
530+ "Subject\n \n Body with\n Text\n \n Continuation but\n doesn't contain colon\n " ,
531+ "Subject\n \n Body with\n Text\n \n Continuation but\n only contains one :\n " ,
532+ "Subject\n \n Body with\n Text\n \n Key: Value\n Line without colon\n " ,
533+ "Subject\n \n Body with\n Text\n \n Line without colon\n Key: Value\n " ,
534534 ]
535535
536536for msg in msgs :