Skip to content

Commit

Permalink
No fail on undefined by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tilk committed Nov 3, 2023
1 parent 2ccd9d7 commit f1b24bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/regression/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def write(self, req: WriteRequest) -> WriteReply:


class CoreMemoryModel:
def __init__(self, segments: list[MemorySegment], fail_on_undefined=True):
def __init__(self, segments: list[MemorySegment], fail_on_undefined=False):
self.segments = segments
self.fail_on_undefined = fail_on_undefined

Expand Down

0 comments on commit f1b24bd

Please sign in to comment.