Skip to content

Commit

Permalink
fix: minor ci issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Feb 29, 2024
1 parent abc610c commit 8f92391
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void testInlineAllocation() {
assert views.size() == 3;
assert dataBuffers.isEmpty();

ViewBuffer view0 = views.getFirst();
ViewBuffer view0 = views.get(0);
assert view0 instanceof InlineValueBuffer;
validateInlineValueBuffer(STR0, (InlineValueBuffer) view0);

Expand Down Expand Up @@ -165,7 +165,7 @@ public void testReferenceAllocationInSameBuffer() {
assert views.size() == 3;
assert dataBuffers.size() == 1;

ViewBuffer view0 = views.getFirst();
ViewBuffer view0 = views.get(0);
assert view0 instanceof InlineValueBuffer;
validateInlineValueBuffer(STR1, (InlineValueBuffer) view0);

Expand Down

0 comments on commit 8f92391

Please sign in to comment.