From 29903c07f924c1cbb4b179a54899a819000f8d3e Mon Sep 17 00:00:00 2001 From: practicalswift Date: Mon, 2 Nov 2015 23:23:02 +0100 Subject: [PATCH] Fix typo. --- tests/regress/potential_memory_leak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regress/potential_memory_leak.py b/tests/regress/potential_memory_leak.py index 46caa6d3..29a29987 100755 --- a/tests/regress/potential_memory_leak.py +++ b/tests/regress/potential_memory_leak.py @@ -14,7 +14,7 @@ class MemoryLeak(regress.RegressTest): elif platform.system() == "Linux": rusage_multiplier = 1024 else: - # resource.getrusage(...) is platform dependent. Only tested under Mac and Linux. + # resource.getrusage(...) is platform dependent. Only tested under OS X and Linux. return max_rss_before = resource.getrusage(resource.RUSAGE_SELF).ru_maxrss * rusage_multiplier for i in xrange(10000):