Skip to content

Commit

Permalink
Fix bug with inconsistent numbers in flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
berland committed Nov 13, 2024
1 parent b8b3f3b commit 6d859ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit_tests/forward_model_runner/test_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def max_memory_per_subprocess_layer(layers: int) -> int:
job = Job(
{
"executable": executable,
"argList": [str(layers), str(int(1e6))],
"argList": [str(layers), str(int(1e7))],
},
0,
)
Expand Down

0 comments on commit 6d859ee

Please sign in to comment.