Skip to content

Commit

Permalink
Update test_sum_of_numbers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Oct 24, 2024
1 parent 5b70487 commit 241cc9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def test_get_sum_negative_numbers(self):
with allure.step("Assert the result"):
a = -1

Check notice on line 110 in kyu_7/beginner_series_sum_of_numbers/test_sum_of_numbers.py

View check run for this annotation

codefactor.io / CodeFactor

kyu_7/beginner_series_sum_of_numbers/test_sum_of_numbers.py#L110

Variable name "a" doesn't conform to snake_case naming style (invalid-name)
b = 0

Check notice on line 111 in kyu_7/beginner_series_sum_of_numbers/test_sum_of_numbers.py

View check run for this annotation

codefactor.io / CodeFactor

kyu_7/beginner_series_sum_of_numbers/test_sum_of_numbers.py#L111

Variable name "b" doesn't conform to snake_case naming style (invalid-name)
expected: int = a + b
expected = a + b
print_log(a=a, b=b, expected=expected)
self.assertEqual(get_sum(a, b), expected)

Expand Down

0 comments on commit 241cc9f

Please sign in to comment.