Test fails due to image file size

Hi, I am just wondering if anyone else has gotten this issue?

def test_file_sizes_are_within_limit():
        for submission_path in SUBMISSION_DIR.glob("*.tif"):
            size_bytes = submission_path.stat().st_size
            err_msg = f"{submission_path} is {size_bytes:,} bytes; over limit of {MAX_FILE_SIZE:,} bytes"
>           assert size_bytes <= MAX_FILE_SIZE, err_msg
E           AssertionError: submission/awc00.tif is 524,710 bytes; over limit of 524,288 bytes
E           assert 524710 <= 524288

To the best of my knowledge, I haven’t changed anything in that part of the code.

Ah, found it. Somehow ended up outputting 2 “channels” from my model without triggering an earlier error/assert fail. Sorry.