diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2023-06-09 16:49:38 +0200 | 
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2023-06-09 17:00:47 +0200 | 
| commit | 9803651ee84545f8913b6fe9e76c8bd13603bb6e (patch) | |
| tree | b142f6884326782d5ba7bd11757477615e320238 /tests/rustdoc-js/generics-trait.js | |
| parent | 6b0c7c4f01d3e6c90d10847471c7a2256346dd3e (diff) | |
| download | rust-9803651ee84545f8913b6fe9e76c8bd13603bb6e.tar.gz rust-9803651ee84545f8913b6fe9e76c8bd13603bb6e.zip  | |
Update rustdoc-js* format
Diffstat (limited to 'tests/rustdoc-js/generics-trait.js')
| -rw-r--r-- | tests/rustdoc-js/generics-trait.js | 26 | 
1 files changed, 8 insertions, 18 deletions
diff --git a/tests/rustdoc-js/generics-trait.js b/tests/rustdoc-js/generics-trait.js index 0e84751603e..4ccfb8f4e4d 100644 --- a/tests/rustdoc-js/generics-trait.js +++ b/tests/rustdoc-js/generics-trait.js @@ -1,22 +1,9 @@ // exact-check -const QUERY = [ - 'Result<SomeTrait>', - 'Result<SomeTraiz>', - 'OtherThingxxxxxxxx', - 'OtherThingxxxxxxxy', -]; - -const CORRECTIONS = [ - null, - null, - null, - 'OtherThingxxxxxxxx', -]; - const EXPECTED = [ - // Result<SomeTrait> { + 'query': 'Result<SomeTrait>', + 'correction': null, 'in_args': [ { 'path': 'generics_trait', 'name': 'beta' }, ], @@ -24,13 +11,15 @@ const EXPECTED = [ { 'path': 'generics_trait', 'name': 'bet' }, ], }, - // Result<SomeTraiz> { + 'query': 'Result<SomeTraiz>', + 'correction': null, 'in_args': [], 'returned': [], }, - // OtherThingxxxxxxxx { + 'query': 'OtherThingxxxxxxxx', + 'correction': null, 'in_args': [ { 'path': 'generics_trait', 'name': 'alpha' }, ], @@ -38,8 +27,9 @@ const EXPECTED = [ { 'path': 'generics_trait', 'name': 'alef' }, ], }, - // OtherThingxxxxxxxy { + 'query': 'OtherThingxxxxxxxy', + 'correction': 'OtherThingxxxxxxxx', 'in_args': [ { 'path': 'generics_trait', 'name': 'alpha' }, ],  | 
