File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2555,21 +2555,21 @@ assert.strictEqual(
25552555{
25562556 assert . strictEqual (
25572557 inspect ( {
2558- /* eslint-disable-next-line no-throw-literal */
2558+ // eslint-disable-next-line no-throw-literal
25592559 get foo ( ) { throw null ; }
25602560 } , { getters : true } ) ,
25612561 '{ foo: [Getter: <Inspection threw>] }'
25622562 ) ;
25632563 assert . strictEqual (
25642564 inspect ( {
2565- /* eslint-disable-next-line no-throw-literal */
2565+ // eslint-disable-next-line no-throw-literal
25662566 get foo ( ) { throw true ; }
25672567 } , { getters : true } ) ,
25682568 '{ foo: [Getter: <Inspection threw>] }'
25692569 ) ;
25702570 assert . strictEqual (
25712571 inspect ( {
2572- /* eslint-disable-next-line no-throw-literal */
2572+ // eslint-disable-next-line no-throw-literal
25732573 get foo ( ) { throw { } ; }
25742574 } , { getters : true } ) ,
25752575 '{ foo: [Getter: <Inspection threw>] }'
You can’t perform that action at this time.
0 commit comments