Skip to content

Commit

Permalink
Fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xinjiacs committed Jun 25, 2015
1 parent 2e4ab50 commit 09db500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/frontend/org/voltdb/expressions/TestExpressionUtil.java
Expand Up @@ -426,8 +426,8 @@ public void testAssignLiteralConstantTypes()
new OperatorExpression(ExpressionType.OPERATOR_MINUS, lit, bint);

lit_bint.normalizeOperandTypes_recurse();
assertEquals(lit.m_valueType, VoltType.FLOAT);
assertEquals(lit.m_valueSize, VoltType.FLOAT.getLengthInBytesForFixedTypes());
assertEquals(lit.m_valueType, VoltType.DECIMAL);
assertEquals(lit.m_valueSize, VoltType.DECIMAL.getLengthInBytesForFixedTypes());
assertEquals(bint.m_valueType, VoltType.BIGINT);
assertEquals(bint.m_valueSize, VoltType.BIGINT.getLengthInBytesForFixedTypes());

Expand Down

0 comments on commit 09db500

Please sign in to comment.