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
Copy file name to clipboardExpand all lines: marklogic-data-hub/src/test/ml-modules/root/test/suites/data-hub/5/impl/entity-lib/findEntityIdentifiers.sjs
results.push(test.assertEqual("123-45-6789",resultsPassingArray[uris[0]],"Should find the correct identifier for person1"));
11
-
results.push(test.assertEqual("987-65-4321",resultsPassingArray[uris[1]],"Should find the correct identifier for person2"));
10
+
11
+
results.push(test.assertEqual("123-45-6789",resultsPassingArray[uris[0]],`Should find the correct identifier for person1: ${JSON.stringify(resultsPassingArray)}`));
12
+
results.push(test.assertEqual("987-65-4321",resultsPassingArray[uris[1]],`Should find the correct identifier for person2: ${JSON.stringify(resultsPassingArray)}`));
results.push(test.assertEqual("123-45-6789",resultsPassingSequence[uris[0]],"Should find the correct identifier for person1"));
15
-
results.push(test.assertEqual("987-65-4321",resultsPassingSequence[uris[1]],"Should find the correct identifier for person2"));
15
+
results.push(test.assertEqual("123-45-6789",resultsPassingSequence[uris[0]],`Should find the correct identifier for person1: ${JSON.stringify(resultsPassingSequence)}`));
16
+
results.push(test.assertEqual("987-65-4321",resultsPassingSequence[uris[1]],`Should find the correct identifier for person2: ${JSON.stringify(resultsPassingSequence)}`));
results.push(test.assertEqual("123-45-6789",resultsPassingSingleValue[uris[0]],"Should find the correct identifier for person1"));
19
+
results.push(test.assertEqual("123-45-6789",resultsPassingSingleValue[uris[0]],`Should find the correct identifier for person1: ${JSON.stringify(resultsPassingSingleValue)}`));
0 commit comments