Skip to content

Commit

Permalink
Merge pull request Turonk#30 from khmaker/patch-1
Browse files Browse the repository at this point in the history
Fix type checking
  • Loading branch information
yandex-praktikum authored Nov 19, 2021
2 parents 7c97355 + cf4f6a3 commit 34afd1e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_homework.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def test_Training_get_distance(input_data, expected):
'Создайте метод `get_distance` в классе `Training`.'
)
result = training.get_distance()
assert type(result) == float, (
assert isinstance(result, float), (
'Метод `get_distance` в классе `Trainig`'
'должен возвращать значение типа `float`'
)
Expand All @@ -160,7 +160,7 @@ def test_Training_get_mean_speed(input_data, expected):
'Создайте метод `get_mean_speed` в классе `Training`.'
)
result = training.get_mean_speed()
assert type(result) == float, (
assert isinstance(result, float), (
'Метод `get_mean_speed` в классе `Training`'
'должен возвращать значение типа `float`'
)
Expand Down Expand Up @@ -240,7 +240,7 @@ def test_Swimming_get_mean(input_data, expected):
'Создайте метод `get_mean_speed` в классе `Swimming`.'
)
result = swimming.get_mean_speed()
assert type(result) == float, (
assert isinstance(result, float), (
'Метод `get_mean_speed` в классе `Swimming` '
'должен возвращать значение типа `float`'
)
Expand All @@ -260,7 +260,7 @@ def test_Swimming_get_spent_calories(input_data, expected):
'Создайте метод `get_spent_calories` в классе `Swimming`.'
)
result = swimming.get_spent_calories()
assert type(result) == float, (
assert isinstance(result, float), (
'Метод `get_spent_calories` класса `Swimming` '
'должен возвращать значение типа `float`'
)
Expand Down Expand Up @@ -298,7 +298,7 @@ def test_SportsWalking_get_spent_calories(input_data, expected):
'Создайте метод `get_spent_calories` в классе `SportsWalking`.'
)
result = sports_walking.get_spent_calories()
assert type(result) == float, (
assert isinstance(result, float), (
'Метод `get_spent_calories`класса `SportsWalking` '
'должен возвращать значение типа`float`'
)
Expand Down Expand Up @@ -335,7 +335,7 @@ def test_Running_get_spent_calories(input_data, expected):
'Создайте метод `get_spent_calories` в классе `Running`.'
)
result = running.get_spent_calories()
assert type(result) == float, (
assert isinstance(result, float), (
'Метод `get_spent_calories` класса `Running` '
'должен возвращать значение типа `float`'
)
Expand Down

0 comments on commit 34afd1e

Please sign in to comment.