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

Commit 4e056d7

Browse files
committed
Update 'is_vowel' function call in tests
1 parent 0869a06 commit 4e056d7

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

tests/sequences/func_test.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import pytest
22

33
import sequences
4-
from sequences import is_vowel
54

65

76
def test_palindrome_simple():
@@ -97,8 +96,8 @@ def test_get_consecutive_slices():
9796

9897

9998
def test_is_vowel():
100-
assert is_vowel('a') is True
101-
assert is_vowel('b') is False
102-
assert is_vowel('A') is True
103-
assert is_vowel('1') is False
104-
assert is_vowel('@') is False
99+
assert sequences.is_vowel('a') is True
100+
assert sequences.is_vowel('b') is False
101+
assert sequences.is_vowel('A') is True
102+
assert sequences.is_vowel('1') is False
103+
assert sequences.is_vowel('@') is False

0 commit comments

Comments
 (0)