diff --git a/tests/test_Source/test_agn.py b/tests/test_Source/test_agn.py index f67ae26a5..2a9437ee8 100644 --- a/tests/test_Source/test_agn.py +++ b/tests/test_Source/test_agn.py @@ -200,6 +200,7 @@ def test_random_agn(): input_agn_bounds_dict=input_agn_bounds_dict, ) + light_curve_1 = { "MJD": [0, 1, 2, 3, 4, 5], "ps_mag_intrinsic": [1, 0, -1, 0, 1, 0], @@ -220,7 +221,11 @@ def test_random_agn(): ) # test initialization with minimal information - RandomAgn(i_band_string, i_band_mag, redshift) + RandomAgn( + i_band_string, + i_band_mag, + redshift + ) # Test that we raise a warning in RandomAgn when no time axis is input with pytest.raises(ValueError):