Skip to content

Commit f7eef2b

Browse files
committed
Fix memory size to MB
1 parent bb12c54 commit f7eef2b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/test_integration_gpu.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,7 @@ def test_gpu_context_structure_validation(cmake):
158158
), f"{context_key} memory_size should be an integer"
159159
assert memory_size > 0, f"{context_key} memory_size should be positive"
160160
# Should be at least 1MB (very conservative)
161-
assert (
162-
memory_size >= 1024 * 1024
163-
), f"{context_key} memory size seems too small"
161+
assert memory_size >= 1, f"{context_key} memory size seems too small"
164162

165163

166164
def test_gpu_context_cross_platform_compatibility(cmake):

0 commit comments

Comments
 (0)