"...resnet50_tensorflow.git" did not exist on "33a4c207feb4a929517744dce4e54317b3f2dc26"
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