sigmf-python icon indicating copy to clipboard operation
sigmf-python copied to clipboard

Create test for checksum code

Open Teque5 opened this issue 1 year ago • 0 comments

Missing a test for the checksum. Verify ok and verify that bad checksum raises err.

note to self about chaining exceptions; may use in same PR:

try:
    do_something()
except KeyError as err:
    msg = 'something happened'
    log.error(msg)
    raise KeyError(msg) from err

Teque5 avatar Jan 04 '24 23:01 Teque5