We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 048784c commit b1ca46fCopy full SHA for b1ca46f
unittest/python/test_type_info.py
@@ -4,7 +4,4 @@
4
assert d.type_info().pretty_name() == "Dummy"
5
6
assert type_info.type_info(1).pretty_name() == "int"
7
-assert (
8
- type_info.type_info("toto").pretty_name()
9
- == "std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>"
10
-)
+assert "basic_string" in type_info.type_info("toto").pretty_name()
0 commit comments