Skip to content

Commit

Permalink
fixup! In tests/test_mtaosCsc.py update ``assert_software_version…
Browse files Browse the repository at this point in the history
…s`` to work with kafka version of salobj.
  • Loading branch information
tribeiro committed Sep 6, 2023
1 parent c345394 commit 778bce2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_mtaosCsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,10 +604,10 @@ def assert_software_versions(self, sofware_versions) -> None:
If software_versions does not match expected values.
"""
# xmlVersion matches xml version
assert len(sofware_versions.xmlVersion) == xml.__version__
assert sofware_versions.xmlVersion == xml.__version__

# cscVersion matches csc version
assert len(sofware_versions.cscVersion) == mtaos.__version__
assert sofware_versions.cscVersion == mtaos.__version__

# subsystemVersions must not be empty
assert len(sofware_versions.subsystemVersions) > 0
Expand Down

0 comments on commit 778bce2

Please sign in to comment.