Skip to content
Snippets Groups Projects
Commit d2da5aa8 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

fix sanity

parent fbb61ed2
No related branches found
No related tags found
No related merge requests found
...@@ -72,7 +72,6 @@ LICENSE_PREFIX = { ...@@ -72,7 +72,6 @@ LICENSE_PREFIX = {
'.mak': r'#\s*', '.mak': r'#\s*',
'Makefile': r'#\s*', 'Makefile': r'#\s*',
'Dockerfile': r'#\s*', 'Dockerfile': r'#\s*',
'LICENSE': r'\s*',
'BUILD': r'#\s*', 'BUILD': r'#\s*',
} }
...@@ -124,7 +123,7 @@ def save(name, text): ...@@ -124,7 +123,7 @@ def save(name, text):
with open(name, 'w') as f: with open(name, 'w') as f:
f.write(text) f.write(text)
assert(re.search(RE_LICENSE['LICENSE'], load('LICENSE')))
assert(re.search(RE_LICENSE['Makefile'], load('Makefile'))) assert(re.search(RE_LICENSE['Makefile'], load('Makefile')))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment