Browse Source

Increase memory limit for FileReader_test to cope with memory alignment

Caleb James DeLisle 5 years ago
parent
commit
183f2aeb83
1 changed files with 1 additions and 1 deletions
  1. 1 1
      io/test/FileReader_test.c

+ 1 - 1
io/test/FileReader_test.c

@@ -26,7 +26,7 @@
 
 int main()
 {
-    struct Allocator* alloc = MallocAllocator_new(1024);
+    struct Allocator* alloc = MallocAllocator_new(2048);
     struct Random* rand = Random_new(alloc, NULL, NULL);
 
     FILE* tmp = tmpfile();