@@ -116,7 +116,7 @@ def test_header_row_in_csv_output(self):
116116 'checksum_sha256,dje_component,dje_license,dje_organization,'
117117 'dje_license_name,scm_branch,scm_repository,signature_gpg_file,'
118118 'redistribute_sources,about_format,usage,'
119- 'license_text,notice,' # These two are not supported and thus treat as custom keys
119+ 'license_text,notice,' # These two are not supported and thus treat as custom keys
120120 'scm_path,scm_tool,scm_rev,scm_tag,organization,'
121121 'warnings,errors' )
122122
@@ -614,7 +614,7 @@ def test_generate_attribution_with_custom_template(self):
614614 test_file = join (TESTDATA_DIR , 'attrib/attrib.ABOUT' )
615615 collector = about .Collector (test_file )
616616 template = join (TESTDATA_DIR , 'attrib/test.template' )
617- result = collector .generate_attribution (template ,limit_to = ['' ])
617+ result = collector .generate_attribution (template , limit_to = ['' ])
618618 self .assertEqual (expected , result )
619619
620620 def test_generate_attribution_with_default_template (self ):
@@ -623,7 +623,7 @@ def test_generate_attribution_with_default_template(self):
623623 test_file = join (TESTDATA_DIR , 'attrib/attrib.ABOUT' )
624624 collector = about .Collector (test_file )
625625 result = collector .generate_attribution (limit_to = ['' ])
626- # Strip all the white spaces
626+ # Strip all the white spaces
627627 self .assertEqual (re .sub (r'\s+' , '' , expected ), re .sub (r'\s+' , '' , result ))
628628
629629 def test_license_text_extracted_from_license_text_file (self ):
@@ -696,4 +696,4 @@ def test_get_about_name(self):
696696 def test_get_dje_license_name (self ):
697697 about_file = about .AboutFile (join (TESTDATA_DIR , 'basic/simple.about' ))
698698 result = about_file .get_dje_license_name ()
699- self .assertEqual (result , 'Apache License 2.0' )
699+ self .assertEqual (result , 'Apache License 2.0' )
0 commit comments