Skip to content

Commit

Permalink
Merge pull request #41 from dalg24/fixup_test_copy_assign_extents
Browse files Browse the repository at this point in the history
Fixup test extents copy assignment
  • Loading branch information
dalg24 authored Apr 29, 2021
2 parents cb95dab + f7bebb0 commit 9d1acac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_extents.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ TYPED_TEST(TestExtents, copy_ctor) {
}

TYPED_TEST(TestExtents, copy_assign) {
typename TestFixture::extents_type e = this->exts;
typename TestFixture::extents_type e;
e = this->exts;
EXPECT_EQ(e, this->exts);
}

Expand Down

0 comments on commit 9d1acac

Please sign in to comment.