Skip to content

Commit

Permalink
Fixup test extents copy assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
dalg24 committed Apr 29, 2021
1 parent cb95dab commit f7bebb0
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 f7bebb0

Please sign in to comment.