summaryrefslogtreecommitdiff
path: root/larch/forest_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'larch/forest_tests.py')
-rw-r--r--larch/forest_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/larch/forest_tests.py b/larch/forest_tests.py
index 9a786bd..a7c9677 100644
--- a/larch/forest_tests.py
+++ b/larch/forest_tests.py
@@ -26,7 +26,7 @@ class ForestTests(unittest.TestCase):
def setUp(self):
self.codec = larch.NodeCodec(3)
- self.ns = larch.NodeStoreMemory(64, self.codec)
+ self.ns = larch.NodeStoreMemory(allow_writes=True, node_size=64, codec=self.codec)
self.forest = larch.Forest(self.ns)
def test_new_node_ids_grow(self):