From 9fb6b904ccb3744cdeb281fb34c3143519e7be0d Mon Sep 17 00:00:00 2001 From: jdebacker Date: Mon, 10 Jun 2024 22:41:14 -0400 Subject: [PATCH] change import to avoid conflict --- tests/test_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 80755cf8..d94f38f1 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,4 +1,4 @@ -from ogusa import utils +from ogusa.utils import read_cbo_forecast import numpy as np @@ -6,7 +6,7 @@ def test_read_cbo_forecast(): """ Test that CBO data read as expected. """ - test_df = utils.read_cbo_forecast() + test_df = read_cbo_forecast() assert np.allclose( test_df.loc[test_df["year"] == 2017, "Y"].values[0], 20344