[test-vector] Enable disabled test

This seems to work already.
This commit is contained in:
Behdad Esfahbod 2022-05-19 15:01:23 -06:00
parent 544ffb913e
commit 37d3275dec
1 changed files with 4 additions and 2 deletions

View File

@ -146,7 +146,6 @@ main (int argc, char **argv)
assert (v2[2] == 3);
}
#if 0
{
hb_vector_t<std::string> v;
@ -156,8 +155,11 @@ main (int argc, char **argv)
s += "x";
v.push (s);
}
hb_vector_t<std::string> v2;
v2 = v;
}
#endif
return 0;
}