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/data-services/entitySearch/getMatchingPropertyValuesTest.sjs
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ function invokeService(entityTypeId, propertyPath, referenceType, pattern, limit
15
15
16
16
// Uncomment the tests when DHFPROD-4494 bug is resolved.
Copy file name to clipboardExpand all lines: marklogic-data-hub/src/test/ml-modules/root/test/suites/data-hub/5/data-services/entitySearch/getMinAndMaxPropertyValuesTest.sjs
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ function invokeService(entityTypeId, propertyPath, referenceType) {
13
13
14
14
// Uncomment the tests when DHFPROD-4494 bug is resolved.
15
15
/*function testMinMaxTwoLevelNesting() {
16
-
let entityTypeId = "http://marklogic.com/EntitiesSearchEntity-0.0.1/EntitiesSearchEntity";
17
-
let propertyPath = "numStrEntityProp/numEntProp/intProp";
16
+
let entityTypeId = "http://marklogic.com/EntitySearchEntity-0.0.1/EntitySearchEntity";
17
+
let propertyPath = "numStrEntityProp/numericEntityProp/intProp";
18
18
const result = invokeService(entityTypeId, propertyPath, "path");
19
19
return [
20
20
test.assertEqual(11, result.min),
@@ -23,8 +23,8 @@ function invokeService(entityTypeId, propertyPath, referenceType) {
23
23
}
24
24
25
25
function testMinMaxOneLevelNesting() {
26
-
let entityTypeId = "http://marklogic.com/EntitiesSearchEntity-0.0.1/EntitiesSearchEntity";
27
-
let propertyPath = "numStrEntityProp/intProp";
26
+
let entityTypeId = "http://marklogic.com/EntitySearchEntity-0.0.1/EntitySearchEntity";
27
+
let propertyPath = "numericStringEntityProp/intProp";
28
28
const result = invokeService(entityTypeId, propertyPath, "path");
29
29
return [
30
30
test.assertEqual(1, result.min),
@@ -33,8 +33,8 @@ function testMinMaxOneLevelNesting() {
33
33
}
34
34
35
35
function testMinMaxLongProperty() {
36
-
let entityTypeId = "http://marklogic.com/EntitiesSearchEntity-0.0.1/EntitiesSearchEntity";
37
-
let propertyPath = "numStrEntityProp/numEntProp/longProp";
36
+
let entityTypeId = "http://marklogic.com/EntitySearchEntity-0.0.1/EntitySearchEntity";
37
+
let propertyPath = "numericStringEntityProp/numericEntityProp/longProp";
38
38
const result = invokeService(entityTypeId, propertyPath, "path");
39
39
return [
40
40
test.assertEqual(110, result.min),
@@ -43,7 +43,7 @@ function testMinMaxLongProperty() {
0 commit comments