Skip to content

Commit 3962f92

Browse files
committed
Merge branch '44-fix-test-for-aarch64' into 'dev'
test_store_options: fix kb sizes (was in bytes) #44 Closes #44 See merge request objectbox/objectbox-python!34
2 parents 304cfdd + 94ea658 commit 3962f92

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_store_options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def test_store_with_options():
5353
store = objectbox.Store(
5454
model=tests.common.create_default_model(),
5555
directory=tests.common.test_dir,
56-
max_db_size_in_kb=1<<30,
57-
max_data_size_in_kb=(1<<30)-(1<<20),
56+
max_db_size_in_kb=1<<20,
57+
max_data_size_in_kb=(1<<20)-(1<<10),
5858
file_mode=int('664',8),
5959
max_readers=126,
6060
no_reader_thread_locals=True,

0 commit comments

Comments
 (0)