From: Brigitta Sipocz <bsipocz@gmail.com>
Date: Mon, 30 Dec 2019 17:39:30 -0800
Subject: Fix np 1.18 compatibility in test

Closes: #959134
---
 astroML/density_estimation/tests/test_density.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/astroML/density_estimation/tests/test_density.py b/astroML/density_estimation/tests/test_density.py
index 4f6150a..b8b0003 100644
--- a/astroML/density_estimation/tests/test_density.py
+++ b/astroML/density_estimation/tests/test_density.py
@@ -28,7 +28,7 @@ def test_1D_density(clf, atol=100):
 
 
 def test_gaussian1d():
-    x = np.linspace(-6, 10, 1E3)
+    x = np.linspace(-6, 10, 1000)
     means = np.array([-1.5, 0.0, 2.3])
     sigmas = np.array([1, 0.25, 3.8])
     weights = np.array([1, 1, 1])
