Skip to content

Commit a5bc29e

Browse files
author
jngaravitoc
committed
updating tests
1 parent 2a5b8a4 commit a5bc29e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_basis_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def test_write_table():
2727
# Clean up
2828
os.remove(filename)
2929

30+
3031
def test_makemodel():
3132
# Create simple synthetic density profile
3233
radius = np.logspace(-1, 1, 5) # 5 points from 0.1 to 10
@@ -35,7 +36,7 @@ def test_makemodel():
3536
Mtotal = 10.0 # desired total mass
3637

3738
# Run model generation
38-
r_scaled, d_scaled, m_scaled, p_scaled = makemodel(radius, density, Mtotal, verbose=False)
39+
r_scaled, d_scaled, m_scaled, p_scaled = make_model(radius, density, Mtotal, verbose=False)
3940

4041
# Assertions
4142
assert r_scaled.shape == radius.shape

0 commit comments

Comments
 (0)