Skip to content

Commit

Permalink
Fix TestAggregationOperator affected by TestNG bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturGajowy authored and lucesape committed Apr 13, 2017
1 parent 82a8e47 commit 508dd33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void testAggregation()
DOUBLE_SUM.bind(ImmutableList.of(5), Optional.empty()),
maxVarcharColumn.bind(ImmutableList.of(6), Optional.empty())));

MaterializedResult expected = resultBuilder(driverContext.getSession(), BIGINT, BIGINT, DOUBLE, VARCHAR, BIGINT, BIGINT, DOUBLE, VARCHAR)
MaterializedResult expected = resultBuilder(driverContext.getSession(), BIGINT, BIGINT, DOUBLE, VARCHAR, BIGINT, BIGINT, REAL, DOUBLE, VARCHAR)
.row(100L, 4950L, 49.5, "399", 100L, 54950L, 44950.0f, 54950.0, "599")
.build();

Expand Down

0 comments on commit 508dd33

Please sign in to comment.