Skip to content

Commit

Permalink
Fixup unit test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdrake committed May 25, 2015
1 parent fbe11ea commit d2c3c27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extension/boolexpr/test/test_dict.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class BoolExprDictTest: public BoolExprTest {};
TEST_F(BoolExprDictTest, MinimumSize)
{
BoolExprDict *dict = BoolExprDict_New();
EXPECT_EQ(dict->pridx, 5);
EXPECT_EQ(dict->pridx, 4);

BoolExprDict_Del(dict);
}
Expand Down
2 changes: 1 addition & 1 deletion extension/boolexpr/test/test_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class BoolExprSetTest: public BoolExprTest {};
TEST_F(BoolExprSetTest, MinimumSize)
{
BoolExprSet *set = BoolExprSet_New();
EXPECT_EQ(set->pridx, 5);
EXPECT_EQ(set->pridx, 4);

BoolExprSet_Del(set);
}
Expand Down

0 comments on commit d2c3c27

Please sign in to comment.