From 280d0afcfcb97d0b18f9b046d44c8a3d19045e9a Mon Sep 17 00:00:00 2001 From: David Glasser Date: Wed, 29 Oct 2014 19:12:32 -0700 Subject: [PATCH] Fix test --- tools/tests/report-stats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tests/report-stats.js b/tools/tests/report-stats.js index c617e2de81..65e38f5a7f 100644 --- a/tools/tests/report-stats.js +++ b/tools/tests/report-stats.js @@ -198,7 +198,7 @@ selftest.define("report-stats", ["slow", "net"], function () { appPackages = stats.getPackagesForAppIdInTest(sandboxProject); selftest.expectEqual(appPackages.who, testUtils.getUserId(s)); selftest.expectEqual(_.sortBy(appPackages.details.packages, "name"), - _.sortBy(packageList(sandboxProject), "name")); + _.sortBy(stats.packageList(sandboxProject), "name")); } ); });