"docs/api/openai-compatibility.mdx" did not exist on "453f572f83c5df0be043b4eaa5832005ea79f60b"
Commit 8ae37506 authored by Chris Shallue's avatar Chris Shallue Committed by Christopher Shallue
Browse files

Remove troublesome test subcase in kepler_spline_test.py.

This subcase may pass or fail based on the version of pydl.

PiperOrigin-RevId: 200736816
parent 5dc14555
......@@ -76,14 +76,6 @@ class KeplerSplineTest(absltest.TestCase):
with self.assertRaises(kepler_spline.InsufficientPointsError):
kepler_spline.kepler_spline(time, flux, bkspace=0.5)
# 4 points, but one point is an outlier.
time = np.array([0.1, 0.2, 0.3, 0.4])
flux = np.sin(time)
flux[2] = 1000
with self.assertRaises(kepler_spline.InsufficientPointsError):
kepler_spline.kepler_spline(time, flux, bkspace=0.5)
class ChooseKeplerSplineTest(absltest.TestCase):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment