Skip to content

Commit

Permalink
Fix memory size in Arduino test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mousius committed Aug 26, 2021
1 parent 5de82b6 commit 7522dda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/micro/arduino/test_arduino_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def test_model_header_templating(project_dir, project):
# Ensure model.h was templated with correct WORKSPACE_SIZE
with (project_dir / "src" / "model.h").open() as f:
model_h = f.read()
assert "#define WORKSPACE_SIZE 21312" in model_h
assert "#define WORKSPACE_SIZE 17392" in model_h


def test_import_rerouting(project_dir, project):
Expand Down

0 comments on commit 7522dda

Please sign in to comment.