Typo (and missing commit)

dev
Carl Woffenden 2022-01-19 18:05:35 +01:00
parent 786263ea85
commit dc983e7d68
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ def test_match_include() -> bool:
# Simple tests to prove pragma_regex's cases.
#
def text_match_pragma() -> bool:
def test_match_pragma() -> bool:
if (pragma_regex.match('#pragma once') and
pragma_regex.match(' #pragma once') and
pragma_regex.match('# pragma once') and
@ -230,5 +230,5 @@ try:
destn = args.output
add_file(args.input)
finally:
if (not destn):
if (destn):
destn.close()