Commit 59724f6e authored by Ramon Nou's avatar Ramon Nou
Browse files

fix cycle

parent aa661713
Loading
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1304,8 +1304,7 @@ def test_comprehensive_cycle_performance(client_fixture,
        assert cmd.exit_code == 0
        _set_client_hostfile(client, workspace_shrink)
        
        post_shrink_verify = verify_files_with_md5(file_md5_map, client, run_mountdir,
                                                   max_read_checks=1)
        post_shrink_verify = verify_files_with_md5(file_md5_map, client, run_mountdir)
        logger.info(f"  Step 2: Shrink took {shrink_elapsed:.3f}s")
        if post_shrink_verify['failed']:
            logger.warning(f"  Cycle shrink post-verify failures: {post_shrink_verify['details'][:5]}")
@@ -1374,8 +1373,7 @@ def test_comprehensive_cycle_performance(client_fixture,
        assert cmd.exit_code == 0
        _set_client_hostfile(client, workspace_expand)
        
        post_expand_verify = verify_files_with_md5(file_md5_map, client, run_mountdir,
                                                   max_read_checks=1)
        post_expand_verify = verify_files_with_md5(file_md5_map, client, run_mountdir)
        logger.info(f"  Step 3: Expand took {expand_elapsed:.3f}s")
        if post_expand_verify['failed']:
            logger.warning(f"  Cycle expand post-verify failures: {post_expand_verify['details'][:5]}")