Skip to content

Commit

Permalink
Formatting suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Steffen Zschaler <[email protected]>
  • Loading branch information
barnettwilliam and szschaler authored Mar 22, 2024
1 parent 722bd10 commit 8333266
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions platform/src/ToolsManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class ToolManager {
* @param {function(String)} errorNotifier - the function to call to display an error
*/
constructor(errorNotifier){
this.configValidator= new ToolConfigValidator();
this.functionRegister= new FunctionRegistry(this);
this.configValidator = new ToolConfigValidator();
this.functionRegister = new FunctionRegistry(this);
this.errorNotification = errorNotifier;
}

Expand Down
2 changes: 1 addition & 1 deletion platform/test/spec/testFunctionRegistrySpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ActionFunction } from "../../src/ActionFunction.js";

describe("FunctionRegistry", () => {

it("a registered function can be found", () => {
it("can find a registered function", () => {

let registry = new FunctionRegistry();

Expand Down

0 comments on commit 8333266

Please sign in to comment.