fix: :zap: Handle Server timeout errors + Add whitespace additions and deletions in text diff
161967b
import pytest | |
from utils import compute_diff | |
def test_compute_diff(text1, text2, expected): | |
pairs = compute_diff(text1, text2) | |
assert list(pairs) == expected | |