Skip to content

Commit

Permalink
#166 Fix test case ArrayConstructorWithSize:
Browse files Browse the repository at this point in the history
  • Loading branch information
frangte committed Jul 16, 2017
1 parent 2f49357 commit 65c3556
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions java/lang/Object/ObjectTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ TEST(JavaLang, ArrayConstructorWithSize) {
int index;
for(index = 0; index < 10; index++) {
validArray.push(index);
expect = index + 1;
result = validArray.length;
ASSERT_EQUAL(expect, result);
}

result = validArray.length;
Expand Down

0 comments on commit 65c3556

Please sign in to comment.