Skip to content

Commit b1ca46f

Browse files
committed
test: fix
1 parent 048784c commit b1ca46f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

unittest/python/test_type_info.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@
44
assert d.type_info().pretty_name() == "Dummy"
55

66
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-
)
7+
assert "basic_string" in type_info.type_info("toto").pretty_name()

0 commit comments

Comments
 (0)