aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/sortresults/sorttest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/sortresults/sorttest.cpp')
-rw-r--r--searchlib/src/tests/sortresults/sorttest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/tests/sortresults/sorttest.cpp b/searchlib/src/tests/sortresults/sorttest.cpp
index cd892800ca5..bbd6d0b72ce 100644
--- a/searchlib/src/tests/sortresults/sorttest.cpp
+++ b/searchlib/src/tests/sortresults/sorttest.cpp
@@ -41,17 +41,17 @@ test_sort(unsigned int caseNum, unsigned int n, unsigned int ntop)
}
FastS_SortResults(array, n, ntop);
- minmax = array[ntop - 1]._rankValue;
+ minmax = array[ntop - 1].getRank();
for(i = 0; i < n; i++) {
if (i < ntop && i > 0
- && array[i]._rankValue > array[i - 1]._rankValue) {
+ && array[i].getRank() > array[i - 1].getRank()) {
printf("ERROR: rank(%d) > rank(%d)\n",
i, i - 1);
ok = false;
break;
}
if (i >= ntop &&
- array[i]._rankValue > minmax) {
+ array[i].getRank() > minmax) {
printf("ERROR: rank(%d) > rank(%d)\n",
i, ntop - 1);
ok = false;