Skip to content

Commit

Permalink
Merge pull request #733 from ImperialCollegeLondon/fix-skipped-test
Browse files Browse the repository at this point in the history
Fix skipped test
  • Loading branch information
alexdewar authored Dec 10, 2024
2 parents e225669 + e543fd9 commit 0c57fbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def test_get_status_bad(input: str, ftsw: FTSW500Interface) -> None:
ftsw._get_status()


VALID_STATUSES = map(SpectrometerStatus, range(4))
VALID_STATUSES = list(map(SpectrometerStatus, range(4)))
"""All possible statuses for the FTSW500."""


Expand Down

0 comments on commit 0c57fbd

Please sign in to comment.