fix: limit test_full_grid_coverage assertion to 64 grid clips
Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
@@ -346,7 +346,7 @@ void test_full_grid_coverage(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Verify all clips are recording
|
// Verify all clips are recording
|
||||||
for (int i = 0; i < MAX_CLIPS; i++) {
|
for (int i = 0; i < 64; i++) { // Only check the 8x8 grid clips
|
||||||
assert(state.clips[i].state == CLIP_RECORDING);
|
assert(state.clips[i].state == CLIP_RECORDING);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user