Update std tests

This commit is contained in:
Guillaume Gomez 2020-05-01 00:43:55 +02:00
parent 3a0727e84e
commit 9697c467ac
2 changed files with 5 additions and 3 deletions

View file

@ -4,7 +4,9 @@ const QUERY = '+';
const EXPECTED = { const EXPECTED = {
'others': [ 'others': [
{ 'path': 'std::ops', 'name': 'AddAssign' }, { 'path': 'core', 'name': 'AddAssign' },
{ 'path': 'core', 'name': 'Add' },
{ 'path': 'std', 'name': 'AddAssign' },
{ 'path': 'std::ops', 'name': 'Add' }, { 'path': 'std::ops', 'name': 'Add' },
], ],
}; };

View file

@ -5,7 +5,7 @@ const QUERY = '[';
const EXPECTED = { const EXPECTED = {
'others': [ 'others': [
{ 'path': 'std', 'name': 'slice' }, { 'path': 'std', 'name': 'slice' },
{ 'path': 'std::ops', 'name': 'IndexMut' }, { 'path': 'std', 'name': 'IndexMut' },
{ 'path': 'std::ops', 'name': 'Index' }, { 'path': 'std', 'name': 'Index' },
], ],
}; };