From bd8a697f1315913936703a7105f1ac99879c1dc5 Mon Sep 17 00:00:00 2001 From: Paul Tarjan Date: Thu, 13 Jun 2013 18:30:52 -0700 Subject: [PATCH] fix text oops --- hphp/test/large_memory/repo_contention.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hphp/test/large_memory/repo_contention.php b/hphp/test/large_memory/repo_contention.php index 4b65c1303..109a9b8e6 100755 --- a/hphp/test/large_memory/repo_contention.php +++ b/hphp/test/large_memory/repo_contention.php @@ -31,5 +31,5 @@ if (count($argv) > 1) { } else { $x10 = main(10); $x200 = main(200); - echo $x10 * 20 < $x200 ? "Failed since $x10 * 20 >= $x200" : "Passed", "\n"; + echo $x10 * 20 < $x200 ? "Failed since $x10 * 20 < $x200" : "Passed", "\n"; }