From 1fdea480d32ea3aa34706913f6c7e5bdde0bc746 Mon Sep 17 00:00:00 2001 From: azivner Date: Tue, 12 Dec 2017 23:16:38 -0500 Subject: [PATCH] fixed terminology --- compare.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compare.js b/compare.js index 28ac27afa..09820e24e 100644 --- a/compare.js +++ b/compare.js @@ -17,8 +17,8 @@ function printDiff(one, two) { }); } -function checkMissing(table, name, idsLeft, idsRight) { - const missing = idsLeft.filter(item => idsRight.indexOf(item) < 0); +function checkMissing(table, name, ids1, ids2) { + const missing = ids1.filter(item => ids2.indexOf(item) < 0); if (missing.length > 0) { console.log("Missing IDs from " + name + " table " + table + ": ", missing);