(inode: int)
| 21 | |
| 22 | |
| 23 | def get_expected_block_content_text(inode: int): |
| 24 | return ( |
| 25 | mock_read_block_output(TEST_FULL_PARTITION, TEST_BLOCK_SIZE, inode) |
| 26 | .decode() |
| 27 | .replace(" ", "") |
| 28 | .replace("\n", "") |
| 29 | ) |
| 30 | |
| 31 | |
| 32 | async def assert_with_timeout(check_func, expected, actual, timeout=10.0, interval=0.1): |