Skip to content

Commit e576541

Browse files
committed
test/type_info: fix issue on Windows
1 parent 1ba3500 commit e576541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/python/test_type_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type_info
22

33
d = type_info.Dummy()
4-
assert d.type_info().pretty_name() == "Dummy"
4+
assert "Dummy" in d.type_info().pretty_name()
55

66
assert type_info.type_info(1).pretty_name() == "int"
77
assert "basic_string" in type_info.type_info("toto").pretty_name()

0 commit comments

Comments
 (0)