Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
berrli committed Aug 7, 2024
1 parent 537ea8b commit 325638d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions tests/test_air_pollution_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

# Add the parent directory to the system path
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../environmental_insights')))
import air_pollution_functions as ei_air_pollution_functions
import data as ei_data
import environmental_insights.air_pollution_functions as ei_air_pollution_functions
import environmental_insights.data as ei_data


class air_pollution_functions_arguement_defence(unittest.TestCase):
Expand Down
4 changes: 2 additions & 2 deletions tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# Add the parent directory to the system path
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../environmental_insights')))

import air_pollution_functions as ei_air_pollution_functions
import data as ei_data
import environmental_insights.air_pollution_functions as ei_air_pollution_functions
import environmental_insights.data as ei_data


class data_arguement_defence(unittest.TestCase):
Expand Down
6 changes: 3 additions & 3 deletions tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# Add this directory to the system path
sys.path.insert(0, module_path)

import air_pollution_functions as ei_air_pollution_functions
import data as ei_data
import models as ei_models
import environmental_insights.air_pollution_functions as ei_air_pollution_functions
import environmental_insights.data as ei_data
import environmental_insights.models as ei_models


class models_arguement_defence(unittest.TestCase):
Expand Down

0 comments on commit 325638d

Please sign in to comment.