diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2023-07-26 20:45:40 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2023-07-26 20:45:40 +0200 |
| commit | cff67bad212b231dde04b8a1abb84c0c4a50290a (patch) | |
| tree | 39fbe6268efdd5428626c5f73e723491d357bcee /src/testing | |
| parent | 9ecb91b9ffb9fc8403c37607f53377b5944bacbc (diff) | |
Fix issue where unresolved symbol didn't get the pkg updated.
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/testing.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testing/testing.odin b/src/testing/testing.odin index 2e020e1..bdd1e16 100644 --- a/src/testing/testing.odin +++ b/src/testing/testing.odin @@ -41,7 +41,7 @@ setup :: proc(src: ^Source) { common.scratch_allocator_init( src.document.allocator, - mem.Kilobyte * 200, + mem.Kilobyte * 2000, context.temp_allocator, ) |