Skip to content

Commit

Permalink
Fix apostrophes being replaced with double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Feb 16, 2024
1 parent 8d45299 commit f6d1f1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions satpy/tests/reader_tests/test_clavrx/test_clavrx_polarhdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def test_available_datasets(self):
assert new_ds_infos[1][0]
assert new_ds_infos[1][1]["resolution"] == 742

# we have this, but don"t want to change the resolution
# we have this, but don't want to change the resolution
# because a previous handler said it has it
assert new_ds_infos[2][0]
assert new_ds_infos[2][1]["resolution"] == 1
Expand All @@ -201,11 +201,11 @@ def test_available_datasets(self):
assert new_ds_infos[4][0]
assert new_ds_infos[4][1]["resolution"] == 742

# we don"t have this variable, don"t change it
# we don"t have this variable, don't change it
assert not new_ds_infos[5][0]
assert new_ds_infos[5][1].get("resolution") is None

# we have this, but it isn"t supposed to come from our file type
# we have this, but it isn't supposed to come from our file type
assert new_ds_infos[6][0] is None
assert new_ds_infos[6][1].get("resolution") is None

Expand Down

0 comments on commit f6d1f1f

Please sign in to comment.