Skip to content

Commit

Permalink
fix test and typing
Browse files Browse the repository at this point in the history
  • Loading branch information
wusteven815 committed Mar 15, 2024
1 parent 9e5e901 commit f82e186
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private Table createSortedTable(boolean ascending) {
if (ascending) {
return t.sort("num");
} else {
return t.sortDescending("n");
return t.sortDescending("num");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ public void seekRow(
final String columnName = request.getColumnName();
final Class<?> dataType = table.getDefinition().getColumn(columnName).getDataType();
final Object seekValue = getSeekValue(request.getSeekValue(), dataType);
final Long result = new SeekRow(
final long result = new SeekRow(
request.getStartingRow(),
columnName,
seekValue,
Expand Down

0 comments on commit f82e186

Please sign in to comment.