Skip to content

Commit

Permalink
solved ci errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeinab15 committed Dec 29, 2024
1 parent acb67b2 commit 07fea3d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion solutions/tests/test_sumrange.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import unittest
from ..sum_range import sum_range
# The line `from solutions.sum_range import sum_range` is importing the
# `sum_range` function from a module named `sum_range` located in a package named
# `solutions`. This allows you to use the `sum_range` function in your test cases
# without having to define it again in the test file. This is a common practice in
# Python to organize code into modules and packages for better maintainability and
# reusability.
from solutions.sum_range import sum_range

class TestSumRange(unittest.TestCase):
"""Unit tests for the Sum_range function."""
Expand Down

0 comments on commit 07fea3d

Please sign in to comment.