Skip to content

Commit

Permalink
Update test/suites/class.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed authored Oct 27, 2021
1 parent 90938c5 commit fd9cab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/suites/class.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ export default function (klona) {
);
});

Classes('class assign', () => {
Classes('constructor properties :: Object.assign', () => {
class Foobar {
constructor(data = undefined) {
constructor(data) {
Object.assign(this, data);
}
}
Expand Down

0 comments on commit fd9cab1

Please sign in to comment.