@@ -201,7 +201,10 @@ assert.strictEqual(util.format('%s', proxy12), 'Proxy([ 1, 2, 3 ])');
201201 // Nested proxies should not trigger any proxy handlers.
202202 const nestedProxy = new Proxy ( new Proxy ( new Proxy ( { } , handler ) , { } ) , { } ) ;
203203
204- assert . strictEqual ( util . inspect ( nestedProxy , { showProxy : true } ) , 'Proxy [ Proxy [ Proxy [ {}, [Object] ], {} ], {} ]' ) ;
204+ assert . strictEqual (
205+ util . inspect ( nestedProxy , { showProxy : true } ) ,
206+ 'Proxy [ Proxy [ Proxy [ {}, [Object] ], {} ], {} ]'
207+ ) ;
205208 assert . strictEqual ( util . inspect ( nestedProxy , { showProxy : false } ) , expected3NoShowProxy ) ;
206209}
207210
@@ -212,5 +215,5 @@ assert.strictEqual(util.format('%s', proxy12), 'Proxy([ 1, 2, 3 ])');
212215 const nestedProxy = new Proxy ( revocable . proxy , { } ) ;
213216
214217 assert . strictEqual ( util . inspect ( nestedProxy , { showProxy : true } ) , 'Proxy [ <Revoked Proxy>, {} ]' ) ;
215- assert . strictEqual ( util . inspect ( nestedProxy , { showProxy : false } ) , '<Revoked Proxy>' ) ;
218+ assert . strictEqual ( util . inspect ( nestedProxy , { showProxy : false } ) , 'Proxy( <Revoked Proxy>) ' ) ;
216219}
0 commit comments