fix segfault in test suite due to typo (fixes #586)

This commit is contained in:
Wenzel Jakob 2017-01-04 09:01:59 -05:00
parent 0e49c02213
commit cd7eacc584

View File

@ -71,7 +71,7 @@ test_initializer pickling([](py::module &m) {
throw std::runtime_error("Invalid state!");
/* Cast and construct */
auto& p = self.cast<PickleableWithDict&>();
new (&p) Pickleable(t[0].cast<std::string>());
new (&p) PickleableWithDict(t[0].cast<std::string>());
/* Assign C++ state */
p.extra = t[1].cast<int>();