From a9469554457455aa2fc5db9565fc543566523724 Mon Sep 17 00:00:00 2001 From: Gabriel Grubba <70247653+Grubba27@users.noreply.github.com> Date: Thu, 11 Aug 2022 13:50:54 -0300 Subject: [PATCH] fix(source-maps): adjusted variable name --- tools/tests/source-maps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tests/source-maps.js b/tools/tests/source-maps.js index e903ed83d8..bdde3ef793 100644 --- a/tools/tests/source-maps.js +++ b/tools/tests/source-maps.js @@ -20,7 +20,7 @@ selftest.define("source maps from checkout", ['checkout'], function () { var index = (process.platform === 'win32') ? 2 : 1; const sourceMap = e.stack.split(":")[index]; const result = (sourceMap === "17" || sourceMap === "18"); - selftest.expectEqual(r, true); + selftest.expectEqual(result, true); } });