Skip to content

Commit

Permalink
fix conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
kelle committed Jun 29, 2024
1 parent 18c7fa9 commit fa1e061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ def test_radial_velocities(db):

t = (
db.query(db.RadialVelocities)
.filter(db.RadialVelocities.c.radial_velocity_error_km_s is None)
.filter(db.RadialVelocities.c.radial_velocity_error_km_s == None)
.astropy()
)
assert len(t) == 89, f"found {len(t)} radial velociies with no uncertainty"

0 comments on commit fa1e061

Please sign in to comment.