Skip to content

Commit

Permalink
Decreased size of array in memory monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
braden6521 committed Mar 28, 2024
1 parent 7ccd13c commit 165fe76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opencsp/common/lib/process/test/test_MemoryMonitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_large_memory_usage(self):
monitor = mm.MemoryMonitor()
monitor.start()
time.sleep(1)
a = [1] * 1_000_000_000
a = [1] * 100_000_000
time.sleep(1.1)
monitor.stop(wait=True)
self.assertGreaterEqual(monitor.max_usage() - monitor.min_usage(), 0.5)
Expand Down

0 comments on commit 165fe76

Please sign in to comment.