diff --git a/src/carlandre.py b/src/carlandre.py index e0c128d..8639fdd 100644 --- a/src/carlandre.py +++ b/src/carlandre.py @@ -100,7 +100,7 @@ def test_list_too_short_for_pattern(): assert result == [] if __name__ == '__main__': - with open('ocr/output.txt', 'r') as handle: + with open('ocr/output_alice.txt', 'r') as handle: contents = handle.read() splitted = contents.split() ll = (pattern(splitted, 8)) diff --git a/src/overunder.py b/src/overunder.py index 4aeefe2..a1887e8 100644 --- a/src/overunder.py +++ b/src/overunder.py @@ -42,7 +42,7 @@ def eval(cmds): last_index = 0 elif cmd[0] == 'load': - contents = open('ocr/output.txt').read() + contents = open('ocr/output_alice.txt').read() text = textwrap.wrap(contents, 40, break_long_words=True) print('\n'.join(text)) line_number = 0