Revert "Fixup class names in class decorator private identifier tests."

This changed the test files, not the templates used to generate the tests.
This commit is contained in:
Daniel Minor 2023-08-30 14:30:37 -04:00 committed by Philip Chimento
parent 581de2d0f8
commit 3ef0777c04
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ info: |
---*/
class C {
var C = class {
static #$() {}
static #_() {}
static #\u{6F}() {}
@ -43,7 +43,7 @@ class C {
static #await() {}
static {
var D = @C.#$
var C = @C.#$
@C.#_
@C.#\u{6F}
@C.#\u2118

View File

@ -51,6 +51,6 @@ class C {
@C.#ZW_\u200C_NJ
@C.#ZW_\u200D_J
@C.#yield
@C.#await class D {}
@C.#await class C {}
}
}