Skip to content

Commit 219e80d

Browse files
fix test module name
1 parent e29eee9 commit 219e80d

File tree

13 files changed

+17
-14
lines changed

13 files changed

+17
-14
lines changed

projects/009-vowel-or-consonant/python/test_vowel_or_consonant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class TestVowelOrConsonant(TestCase):
1515

1616
def setUp(self) -> None:
17-
self.module_name = 'projects.m1.009-vowel-or-consonant.python.main'
17+
self.module_name = 'projects.009-vowel-or-consonant.python.main'
1818

1919
@patch('builtins.input')
2020
def test_ok_vowel(self, mock_input):

projects/010-month-name-to-number-of-days/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Then your program should display the number of days in that month.
66
Display **28 or 29 days** for **February** so that leap years are addressed.
77

88
Example:
9-
Input =
10-
Output =
9+
Input = April
10+
Output = 30
1111

1212
# Documentation
1313

projects/010-month-name-to-number-of-days/python/test_month_name_to_number_of_days.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class TestMonthNameToNumberOfDays(TestCase):
1515

1616
def setUp(self) -> None:
17-
self.module_name = 'projects.m1.010-month-name-to-number-of-days.python.main'
17+
self.module_name = 'projects.010-month-name-to-number-of-days.python.main'
1818

1919
@patch('builtins.input')
2020
def test_ok_30(self, mock_input):

projects/011-note-to-frequency/python/test_note_to_frequency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class TestNoteToFrequency(TestCase):
1616

1717
def setUp(self) -> None:
18-
self.module_name = 'projects.m1.011-note-to-frequency.python.main'
18+
self.module_name = 'projects.011-note-to-frequency.python.main'
1919

2020
@patch('builtins.input')
2121
def test_ok(self, mock_input):

projects/012-what-color-is-that-square/python/test_what_color_is_that_square.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class TestWhatColorIsThatSquare(TestCase):
1515

1616
def setUp(self) -> None:
17-
self.module_name = 'projects.m1.012-what-color-is-that-square.python.main'
17+
self.module_name = 'projects.012-what-color-is-that-square.python.main'
1818

1919
@patch('builtins.input')
2020
def test_ok_white(self, mock_input):

projects/013-birth-date-to-astrological-sign/python/test_birth_day_to_astrological_sign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class TestBirthDateToAstrologicalSign(TestCase):
1616

1717
def setUp(self) -> None:
18-
self.module_name = 'projects.m1.013-birth-date-to-astrological-sign.python.main'
18+
self.module_name = 'projects.013-birth-date-to-astrological-sign.python.main'
1919

2020
@patch('builtins.input')
2121
def test_ok_capricorn(self, mock_inputs):

projects/014-cell-phone-bill/python/test_cell_phone_bill.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class TestCellPhoneBill(TestCase):
1515

1616
def setUp(self) -> None:
17-
self.module_name = 'projects.m1.014-cell-phone-bill.python.main'
17+
self.module_name = 'projects.014-cell-phone-bill.python.main'
1818

1919
@patch('builtins.input')
2020
def test_ok_base(self, mock_inputs):

projects/015-is-it-a-leap-year/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ The rules for determining whether a year is a leap year follow:
1414
Write a program that **reads a year** from the user and
1515
displays a message indicating **whether it is a leap year**.
1616

17+
Example:
18+
Input: 2024
19+
Output: Leap year
1720

1821
# Documentation
1922

projects/015-is-it-a-leap-year/python/test_is_it_a_leap_year.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
class TestWhatColorIsThatSquare(TestCase):
1515

1616
def setUp(self) -> None:
17-
self.module_name = 'projects.m1.015-is-it-a-leap-year.python.main'
17+
self.module_name = 'projects.015-is-it-a-leap-year.python.main'
1818

1919
@patch('builtins.input')
2020
def test_ok_leap(self, mock_input):

projects/016-next-day/python/test_next_day.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class TestNextDay(TestCase):
1616

1717
def setUp(self) -> None:
18-
self.module_name = 'projects.m1.016-next-day.python.main'
18+
self.module_name = 'projects.016-next-day.python.main'
1919

2020
@patch('builtins.input')
2121
def test_ok(self, mock_inputs):

0 commit comments

Comments
 (0)