Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Challenge/convert temperature _ Celsius to Fahrenheit #66

Merged
merged 16 commits into from
Jan 12, 2025
Merged
Prev Previous commit
Next Next commit
fixed test errors
  • Loading branch information
danielluyi committed Jan 11, 2025
commit f110ba7441b075b03663ba4f8441c6657b9d3f36
2 changes: 1 addition & 1 deletion solutions/tests/test_count_vowels.py
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ def test_numeric_and_special_characters(self):

def test_vowels_in_words(self):
"""Test a string with words containing vowels."""
self.assertEqual(count_vowels("Python programming is fun!"), 8)
self.assertEqual(count_vowels("Python programming is fun!"), 6)


if __name__ == "__main__":
Loading