Skip to content

Commit

Permalink
ruff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alphasentaurii committed Apr 6, 2024
1 parent 1eb7c51 commit 862ef37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/preprocessor/test_scrub.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def test_jwst_cal_scrubber_l3_tac_name(jwst_cal_tac_df):
for name in list(jwst_cal_tac_df.index):
exptype = jwst_cal_tac_df.loc[name]['EXP_TYPE']
tsovisit = jwst_cal_tac_df.loc[name]['TSOVISIT']
if tsovisit != True:
if tsovisit is not True:
assert exptype in tso_ami_coron

# only if tso
Expand Down

0 comments on commit 862ef37

Please sign in to comment.