Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup: further documentation improvements
  • Loading branch information
BridgeAR committed Jan 9, 2019
commit a64d10bf0bf5a9d24e0eab4f0ab0c81c2ce117f5
6 changes: 3 additions & 3 deletions test/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ expectWarning('DeprecationWarning', [

expectWarning('DeprecationWarning', [
['Foobar is deprecated', 'DEP0XXX'],
['Baz is also deprecated']
['Baz is also deprecated', 'DEP0XX2']
]);

expectWarning('DeprecationWarning', {
Expand All @@ -147,10 +147,10 @@ expectWarning({
DEP0XX1: 'Baz is also deprecated'
},
Warning: [
['Multiple array entries are fine', 'DEP0XXX'],
['Multiple array entries are fine', 'SpecialWarningCode'],
['No code is also fine']
],
SingleEntry: ['This will also work', 'DEP0XXX'],
SingleEntry: ['This will also work', 'WarningCode'],
SingleString: 'Single string entries without code will also work'
});
```
Expand Down