Skip to content

Commit

Permalink
Minor JS style fix. (#826)
Browse files Browse the repository at this point in the history
  • Loading branch information
aalexand authored Dec 29, 2023
1 parent 5aaadb5 commit 960ae82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/driver/testdata/testfixture.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class TestFixture {
// setContext arranges to add name(args) to all messages added
// until the next setContext or run call.
setContext(name, ...args) {
this.context = name + "(" + args.join(",") + ")"
this.context = name + "(" + args.join(",") + ")";
}

log(...args) {
Expand All @@ -27,4 +27,4 @@ class TestFixture {
err(...args) {
this.result.push(["ERROR", this.context, ...args]);
}
};
}

0 comments on commit 960ae82

Please sign in to comment.