Skip to content

Commit

Permalink
#143: test: fix typo in test
Browse files Browse the repository at this point in the history
  • Loading branch information
lifflander committed Oct 19, 2020
1 parent 9186ba1 commit 7c2f81d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_virtual_serialize.cc
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ struct HolderBasic final : HolderObjBase<ObjT> {

TEST_F(TestVirtualSerializeTemplated, test_virtual_serialize_templated) {
using TestType = std::unique_ptr<HolderBase>;
TestType ptr = std::make_unique<HolderBasic<int>>(10);
TestType ptr = std::make_unique<HolderBasic<int>>();

auto ret = checkpoint::serialize(ptr);
checkpoint::deserialize<TestType>(std::move(ret));
Expand Down

0 comments on commit 7c2f81d

Please sign in to comment.