Skip to content

Commit

Permalink
Merge pull request #112 from devnexen/fix_alignment_unittest
Browse files Browse the repository at this point in the history
fix alignment unit test.
  • Loading branch information
emeryberger authored May 12, 2024
2 parents e111dc6 + e3f0811 commit 4e09d4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testing/unit/alignment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ TEST(Alignment, NonOverlapping) {

// we should return nullptr for crazy allocations like this.
// Fixes #62
ASSERT_EQ(a, NULL);
ASSERT_EQ(b, NULL);
ASSERT_EQ(a, nullptr);
ASSERT_EQ(b, nullptr);
}

0 comments on commit 4e09d4e

Please sign in to comment.