Skip to content

Commit 0e00255

Browse files
committed
Manually fix typo within single quotes
Spotted while running tests... apparently there is a known issue and words near single quotes are not detected since that quote could be a part of the word: codespell-project/codespell#3305
1 parent 778dc04 commit 0e00255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_command_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def test_read_file():
296296
max_rounds = 100 if is_pypy() else 1000
297297
print("\nSetting up test_read_file for {} rounds".format(max_rounds))
298298
for round in range(0, max_rounds):
299-
print('Comparaison round {} with method {}'.format(round, method))
299+
print('Comparison round {} with method {}'.format(round, method))
300300
exit_code, output = command_runner(PRINT_FILE_CMD, shell=True, method=method)
301301
if os.name == 'nt':
302302
output = output.replace('\r\n', '\n')

0 commit comments

Comments
 (0)