You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert.equal(actualFileNames.length,expectedFileNames.length,`${caption}: incorrect actual number of files, expected ${JSON.stringify(expectedFileNames)}, got ${actualFileNames}`);
133
+
assert.equal(actualFileNames.length,expectedFileNames.length,`${caption}: incorrect actual number of files, expected ${expectedFileNames}, got ${actualFileNames}`);
134
134
for(constfofexpectedFileNames){
135
-
assert.isTrue(contains(actualFileNames,f),`${caption}: expected to find ${f} in ${JSON.stringify(actualFileNames)}`);
135
+
assert.isTrue(contains(actualFileNames,f),`${caption}: expected to find ${f} in ${actualFileNames}`);
0 commit comments