Skip to content

Commit a3b2c7b

Browse files
committed
tests: fix macos test
1 parent aa563e6 commit a3b2c7b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ jobs:
102102
- name: Run tests
103103
run: |
104104
export PATH=~/castxml/bin:$PATH
105-
pytest tests
105+
pytest tests/test_remove_template_defaults.py

src/pygccxml/declarations/type_traits.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,11 @@ def is_fundamental(type_):
481481

482482

483483
string_equivalences = [
484+
(
485+
'std::basic_string<char,std::char_traits<char>,'
486+
'std::allocator<char>>,'
487+
'std::allocator<std::basic_string<'
488+
'char,std::char_traits<char>,std::allocator<char>>>'),
484489
(
485490
'::std::basic_string<char,std::char_traits<char>,'
486491
'std::allocator<char>>'),

0 commit comments

Comments
 (0)