Skip to content

Commit d86e7c1

Browse files
committed
Remove a print
1 parent 76fd537 commit d86e7c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_emacs_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_weird_chars(self):
4040

4141
def __test_parsing(self, line: str, expected: Modeline):
4242
parser = ModelineParser_Emacs(ModelineInstructionsMapping())
43-
print(parser.parse_line(line, None))
43+
#print(parser.parse_line(line, None))
4444
self.assertEqual(parser.parse_line(line, None), expected)
4545

4646
# Note: We don’t do another integration test as we have done it in the Sublime parser test (and the legacy+vim one).

0 commit comments

Comments
 (0)