Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Update 'is_vowel' function call in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shorodilov committed Nov 30, 2023
1 parent a960894 commit 2a8d543
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/sequences/func_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import pytest

import sequences
from sequences import is_vowel


def test_palindrome_simple():
Expand Down Expand Up @@ -97,8 +96,8 @@ def test_get_consecutive_slices():


def test_is_vowel():
assert is_vowel('a') is True
assert is_vowel('b') is False
assert is_vowel('A') is True
assert is_vowel('1') is False
assert is_vowel('@') is False
assert sequences.is_vowel('a') is True
assert sequences.is_vowel('b') is False
assert sequences.is_vowel('A') is True
assert sequences.is_vowel('1') is False
assert sequences.is_vowel('@') is False

0 comments on commit 2a8d543

Please sign in to comment.