Skip to content

Commit

Permalink
change import to avoid conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
jdebacker committed Jun 11, 2024
1 parent 898907e commit 9fb6b90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from ogusa import utils
from ogusa.utils import read_cbo_forecast
import numpy as np


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
Expand Down

0 comments on commit 9fb6b90

Please sign in to comment.