Skip to content

Commit

Permalink
making testing light curves which were lists into arrays for compatab…
Browse files Browse the repository at this point in the history
…ility
  • Loading branch information
Henry-Best-01 committed Oct 9, 2024
1 parent 1958c3f commit 460b2d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_Source/test_agn.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ def test_random_agn():
)

light_curve_1 = {
"MJD": [0, 1, 2, 3, 4, 5],
"ps_mag_intrinsic": [1, 0, -1, 0, 1, 0],
"MJD": np.asarray([0, 1, 2, 3, 4, 5]),
"ps_mag_intrinsic": np.asarray([1, 0, -1, 0, 1, 0]),
}
light_curve_2 = {
"MJD": [0, 1, 2, 3, 4, 5],
"ps_mag_intrinsic": [1, 0, 1, 0, 1, 0],
"MJD": np.asarray([0, 1, 2, 3, 4, 5]),
"ps_mag_intrinsic": np.asarray([1, 0, 1, 0, 1, 0]),
}
input_agn_bounds_dict["intrinsic_light_curve"] = [light_curve_1, light_curve_2]

Expand Down

0 comments on commit 460b2d3

Please sign in to comment.