Skip to content

Commit 1174595

Browse files
authored
chore: clean up cursor commands, fix max size test assertion (#61)
* chore: rename find-and-open to find, remove plan-next-yolo command Made-with: Cursor * fix: use <= instead of < for max size boundary assertion Made-with: Cursor
1 parent f214286 commit 1174595

3 files changed

Lines changed: 1 addition & 21 deletions

File tree

File renamed without changes.

.cursor/commands/issues/plan-next-yolo.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

tests/test_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def test_max_size_limit():
256256

257257
assert storage.number_of_items > 10
258258
assert storage.size_in_bytes > 3500
259-
assert storage.size_in_bytes < 4096
259+
assert storage.size_in_bytes <= 4096
260260
storage.close()
261261

262262

0 commit comments

Comments
 (0)