Skip to content

Commit

Permalink
updated linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Melat-arch committed Jan 12, 2025
1 parent 6c7b615 commit 1865111
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions solutions/tests/test_merge_even_odd_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ def test_typical_case(self):
result = merge_even_odd_lists([4, 12, 7, 26, 34], [6, 13, 25, 18, 47])
assert result == [4, 12, 26, 34, 13, 25, 47]

def test_empty_lists(self):
"""Test with empty lists."""
result = merge_even_odd_lists([], [])
assert result == []

def test_no_even_numbers_in_first_list(self):
"""Test when first list has no even numbers."""
result = merge_even_odd_lists([1, 3, 5], [2, 4, 7, 9])
Expand Down

0 comments on commit 1865111

Please sign in to comment.