Skip to content

Commit

Permalink
fix test breakage
Browse files Browse the repository at this point in the history
  • Loading branch information
hegemonic committed Aug 4, 2017
1 parent 50fae0a commit 1e1976d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fixtures/hideconstructortag.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class WaffleIron {
* @hideconstructor
*/
constructor() {
if (#instance) {
return #instance;
if (this.#instance) {
return this.#instance;
}

/**
Expand Down

0 comments on commit 1e1976d

Please sign in to comment.