Skip to content

Commit c573f0c

Browse files
authored
Merge pull request #1583 from marklogic/feature/optic-test-fix
Updated test based on DBQ-126 fix
2 parents 9f628ff + 6efb8cb commit c573f0c

File tree

1 file changed

+3
-2
lines changed
  • marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/fastfunctest

1 file changed

+3
-2
lines changed

marklogic-client-api-functionaltests/src/test/java/com/marklogic/client/fastfunctest/TestOpticOnViews.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2991,8 +2991,9 @@ public void testColInfoWithSysCols() {
29912991
new ColumnInfo("DetailName", "string"),
29922992
new ColumnInfo("opticFunctionalTest", "detail", "amount", "double"),
29932993
new ColumnInfo("opticFunctionalTest", "detail", "color", "string"),
2994-
new ColumnInfo("opticFunctionalTest", "detail", "fragIdCol1", expectedFragmentValue, true),
2995-
new ColumnInfo("opticFunctionalTest", "master", "fragIdCol2", expectedFragmentValue, true)
2994+
// Per DBQ-123, since the fragment IDs are being selected, hidden should now be false
2995+
new ColumnInfo("opticFunctionalTest", "detail", "fragIdCol1", expectedFragmentValue, false),
2996+
new ColumnInfo("opticFunctionalTest", "master", "fragIdCol2", expectedFragmentValue, false)
29962997
);
29972998
}
29982999
}

0 commit comments

Comments
 (0)