fix: update test to match let xp (#53273)

This commit is contained in:
Ilenia 2024-01-19 01:23:49 +01:00 committed by GitHub
parent 326d15da99
commit 473babe180
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,7 +34,7 @@ assert.match(code, /let/);
You should declare a variable named `xp`.
```js
assert.match(code, /xp/);
assert.match(code, /let\s+xp/);
```
You should not assign a value to your variable.