mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2026-04-10 12:33:42 +00:00
Make quote style consistent (#891)
This commit is contained in:
committed by
GitHub
parent
9276edbc37
commit
7ca7c47e4a
@@ -33,8 +33,8 @@ def test_main(capsys):
|
||||
captured = capsys.readouterr()
|
||||
|
||||
# Normalize line endings and strip trailing whitespace from each line
|
||||
normalized_expected = '\n'.join(line.rstrip() for line in expected.splitlines())
|
||||
normalized_output = '\n'.join(line.rstrip() for line in captured.out.splitlines())
|
||||
normalized_expected = "\n".join(line.rstrip() for line in expected.splitlines())
|
||||
normalized_output = "\n".join(line.rstrip() for line in captured.out.splitlines())
|
||||
|
||||
# Compare normalized strings
|
||||
assert normalized_output == normalized_expected
|
||||
|
||||
Reference in New Issue
Block a user