aboutsummaryrefslogtreecommitdiff
path: root/src/testing
diff options
context:
space:
mode:
Diffstat (limited to 'src/testing')
-rw-r--r--src/testing/testing.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing.odin b/src/testing/testing.odin
index 356c457..a824d87 100644
--- a/src/testing/testing.odin
+++ b/src/testing/testing.odin
@@ -36,7 +36,7 @@ setup :: proc(src: ^Source) {
src.document.allocator = new(common.Scratch_Allocator);
src.document.package_name = "test";
- common.scratch_allocator_init(src.document.allocator, mem.kilobytes(200), context.temp_allocator);
+ common.scratch_allocator_init(src.document.allocator, mem.Kilobyte * 200, context.temp_allocator);
//no unicode in tests currently
current, last: u8;